
    Mh_                     R   d Z ddlmZ ddlmZmZmZmZm	Z	m
Z
 ddlmZmZmZ ddlmZmZ ddlmZmZmZ g dZ G d d	e          Z G d
 d          Z G d de          Z G d de          Z G d de          Z G d d          Z G d de          Z G d de          ZdS )zMVarious display related classes.

Authors : MinRK, gregcaporaso, dannystaple
    )escape)existsisfilesplitextabspathjoinisdir)walksepfsdecode)DisplayObjectTextDisplayObject)TupleIterableOptional)AudioIFrameYouTubeVideo
VimeoVideoScribdDocumentFileLink	FileLinksCodec                        e Zd ZdZdZddd fdZ fdZed	             Zed
e	e
ef         fd            Zed             Zed             Zd Zd Zd Zd Zd Z xZS )r   a  Create an audio object.

    When this object is returned by an input cell or passed to the
    display function, it will result in Audio controls being displayed
    in the frontend (only works in the notebook).

    Parameters
    ----------
    data : numpy array, list, unicode, str or bytes
        Can be one of

          * Numpy 1d array containing the desired waveform (mono)
          * Numpy 2d array containing waveforms for each channel.
            Shape=(NCHAN, NSAMPLES). For the standard channel order, see
            http://msdn.microsoft.com/en-us/library/windows/hardware/dn653308(v=vs.85).aspx
          * List of float or integer representing the waveform (mono)
          * String containing the filename
          * Bytestring containing raw PCM data or
          * URL pointing to a file on the web.

        If the array option is used, the waveform will be normalized.

        If a filename or url is used, the format support will be browser
        dependent.
    url : unicode
        A URL to download the data from.
    filename : unicode
        Path to a local file to load the data from.
    embed : boolean
        Should the audio data be embedded using a data URI (True) or should
        the original source be referenced. Set this to True if you want the
        audio to playable later with no internet connection in the notebook.

        Default is `True`, unless the keyword argument `url` is set, then
        default value is `False`.
    rate : integer
        The sampling rate of the raw data.
        Only required when data parameter is being used as an array
    autoplay : bool
        Set to True if the audio should immediately start playing.
        Default is `False`.
    normalize : bool
        Whether audio should be normalized (rescaled) to the maximum possible
        range. Default is `True`. When set to `False`, `data` must be between
        -1 and 1 (inclusive), otherwise an error is raised.
        Applies only when `data` is a list or array of samples; other types of
        audio are never normalized.

    Examples
    --------

    >>> import pytest
    >>> np = pytest.importorskip("numpy")

    Generate a sound

    >>> import numpy as np
    >>> framerate = 44100
    >>> t = np.linspace(0,5,framerate*5)
    >>> data = np.sin(2*np.pi*220*t) + np.sin(2*np.pi*224*t)
    >>> Audio(data, rate=framerate)
    <IPython.lib.display.Audio object>

    Can also do stereo or more channels

    >>> dataleft = np.sin(2*np.pi*220*t)
    >>> dataright = np.sin(2*np.pi*224*t)
    >>> Audio([dataleft, dataright], rate=framerate)
    <IPython.lib.display.Audio object>

    From URL:

    >>> Audio("http://www.nch.com.au/acm/8k16bitpcm.wav")  # doctest: +SKIP
    >>> Audio(url="http://www.w3schools.com/html/horse.ogg")  # doctest: +SKIP

    From a File:

    >>> Audio('IPython/lib/tests/test.wav')  # doctest: +SKIP
    >>> Audio(filename='IPython/lib/tests/test.wav')  # doctest: +SKIP

    From Bytes:

    >>> Audio(b'RAW_WAV_DATA..')  # doctest: +SKIP
    >>> Audio(data=b'RAW_WAV_DATA..')  # doctest: +SKIP

    See Also
    --------
    ipywidgets.Audio

         Audio widget with more more flexibility and options.

    rbNFT
element_idc                   |||t          d          |du r|t          d          ||durd| _        nd| _        || _        || _        t	          t
          |                               |||           | j        Nt          | j        t                    s6|t          d          t
          
                    |||          | _        d S d S d S )Nz6No audio data found. Expecting filename, url, or data.Fz,No url found. Expecting url when embed=FalseTdataurlfilenamezKrate must be specified when data is a numpy array or list of audio samples.)
ValueErrorembedautoplayr   superr   __init__r    
isinstancebytes	_make_wav)
selfr    r"   r!   r$   rater%   	normalizer   	__class__s
            S/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/IPython/lib/display.pyr'   zAudio.__init__p   s    UVVVE>>ckKLLL?uD00DJJDJ $eT##3#JJJ9 DIu)E)E | !nooodI>>DIII !       c                 2   ddl }| j        r't          t          |                                            | j        '|                    | j                  d         | _        dS | j        '|                    | j                  d         | _        dS d| _        dS )z%Reload the raw data from file or URL.r   Nz	audio/wav)		mimetypesr$   r&   r   reloadr"   
guess_typemimetyper!   )r+   r2   r.   s     r/   r3   zAudio.reload   s    : 	(%%%'''=$%00??BDMMMX!%00::1=DMMM'DMMMr0   c                    ddl m} ddl}	 t                              | |          \  }}n.# t
          $ r! t                              | |          \  }}Y nw xY w |            }|                    |d          }|                    |           |	                    |           |
                    d           |                    dd           |                    |           |                                }	|                                 |	S )z- Transform a numpy array to a PCM bytestring r   )BytesIONwb)mode   NONE)ior7   waver   "_validate_and_normalize_with_numpyImportError%_validate_and_normalize_without_numpyopensetnchannelssetframeratesetsampwidthsetcomptypewriteframesgetvalueclose)
r    r,   r-   r7   r=   scalednchanfpwaveobjvals
             r/   r*   zAudio._make_wav   s#    		Y!DDT9UUMFEE 	Y 	Y 	Y!GGiXXMFEEE	Y WYY))BD)))U###T"""QF6***F###kkmm
s   + (AAreturnc                    dd l }|                    | t                    } t          | j                  dk    rd}nNt          | j                  dk    r'| j        d         }| j                                        } nt          d          |                    |	                    |                     }t                              ||          }| |z  dz  }|                    d                                          |fS )Nr   )dtype   r:   z*Array audio input must be a 1D or 2D array  z<h)numpyarrayfloatlenshapeTravelr#   maxabsr   _get_normalization_factorastypetobytes)r    r-   nprJ   max_abs_valuenormalization_factorrI   s          r/   r>   z(Audio._validate_and_normalize_with_numpy   s    xxEx**tz??aEE__!!
 JqME6<<>>DDIJJJrvvd||,,$>>}iXX,,u4}}T""**,,e33r0   c                    dd l }dd l}|                     d|           } 	 t          t          d | D                                 }n"# t          $ r}t	          d          |d }~ww xY wt
                              ||          |                     dfd| D                       }|j        dk    r|                                 d}|	                                |fS )	Nr   fc                 ,    g | ]}t          |          S  )r[   ).0xs     r/   
<listcomp>z?Audio._validate_and_normalize_without_numpy.<locals>.<listcomp>   s    &<&<&<!s1vv&<&<&<r0   z@Only lists of mono audio are supported if numpy is not installedhc                 :    g | ]}t          |z  d z            S )rR   )int)rf   rg   ra   s     r/   rh   z?Audio._validate_and_normalize_without_numpy.<locals>.<listcomp>   s,    "W"W"WQ3q+?'?%'G#H#H"W"W"Wr0   bigrQ   )
rT   sysrU   rZ   	TypeErrorr   r\   	byteorderbyteswapr^   )	r    r-   rT   rm   r`   erI   rJ   ra   s	           @r/   r@   z+Audio._validate_and_normalize_without_numpy   s   


{{3%%	>!#&<&<t&<&<&<"="=>>MM 	> 	> 	> 6 7 7<=>	>  %>>}iXXS"W"W"W"WRV"W"W"WXX=E!!OO~~&&s   &A 
A'A""A'c                 <    |s| dk    rt          d          |r| ndS )NrQ   z9Audio data must be between -1 and 1 when normalize=False.)r#   )r`   r-   s     r/   r\   zAudio._get_normalization_factor   s3     	Z]Q..XYYY )0}}q0r0   c                 L    i }| j         r
| j         |d<   |r	| j        |fS | j        S )z@shortcut for returning metadata with url information, if definedr!   )r!   r    )r+   mds     r/   _data_and_metadatazAudio._data_and_metadata   s8    8 	!BuI 	9b= 9r0   c                     d}|                     |                                 | j        |                                 |                                           S )Nz
                <audio {element_id} controls="controls" {autoplay}>
                    <source src="{src}" type="{type}" />
                    Your browser does not support the audio element.
                </audio>
              )srctyper%   r   )formatsrc_attrr5   autoplay_attrelement_id_attr)r+   rw   s     r/   _repr_html_zAudio._repr_html_   sQ     zzdmmooDMDL^L^L`L`%)%9%9%;%;  = = 	=r0   c                     dd l }| j        rR| j        K|                    | j                                      d          x}}d                    | j        |          S | j        | j        S dS )Nr   asciizdata:{type};base64,{base64})rx   base64 )r   r$   r    	b64encodedecodery   r5   r!   )r+   r   r    s      r/   rz   zAudio.src_attr   s    : 	490 **4955<<WEEED64;;CG < I I IX!8O2r0   c                     | j         rdS dS )Nzautoplay="autoplay"r   )r%   r+   s    r/   r{   zAudio.autoplay_attr   s    = 	((2r0   c                 J    | j         rd                    | j                   S dS )Nzid="{element_id}"r   r   )r   ry   r   s    r/   r|   zAudio.element_id_attr   s*    O 	&---III2r0   )NNNNNFT)__name__
__module____qualname____doc___read_flagsr'   r3   staticmethodr*   r   r)   rk   r>   r@   r\   ru   r}   rz   r{   r|   __classcell__r.   s   @r/   r   r      sC       [ [x K? ? ? ? ? ? ? ?(( ( ( ( (   \, 4uUCZ?P 4 4 4 \4* ' ' \'& 1 1 \1
  = = =	 	 	        r0   r   c                   D    e Zd ZdZdZ	 ddeee                  fdZd Z	dS )r   zA
    Generic class to embed an iframe in an IPython notebook
    z
        <iframe
            width="{width}"
            height="{height}"
            src="{src}{params}"
            frameborder="0"
            allowfullscreen
            {extras}
        ></iframe>
        Nextrasc                 T    |g }|| _         || _        || _        || _        || _        d S N)rw   widthheightr   params)r+   rw   r   r   r   kwargss         r/   r'   zIFrame.__init__  s5     >F
r0   c           	          | j         rddlm} d || j                   z   }nd}| j                            | j        | j        | j        |d                    | j	                            S )zreturn the embed iframer   )	urlencode?r    )rw   r   r   r   r   )
r   urllib.parser   iframery   rw   r   r   r   r   )r+   r   r   s      r/   r}   zIFrame._repr_html_  s}    ; 	......99T[111FFF{!!*;88DK(( " 
 
 	
r0   r   )
r   r   r   r   r   r   r   strr'   r}   re   r0   r/   r   r     se         	F EI
 
*28C=*A
 
 
 

 
 
 
 
r0   r   c                   *     e Zd ZdZd fd	Zd Z xZS )r   a  Class for embedding a YouTube Video in an IPython session, based on its video id.

    e.g. to embed the video from https://www.youtube.com/watch?v=foo , you would
    do::

        vid = YouTubeVideo("foo")
        display(vid)

    To start from 30 seconds::

        vid = YouTubeVideo("abc", start=30)
        display(vid)

    To calculate seconds from time as hours, minutes, seconds use
    :class:`datetime.timedelta`::

        start=int(timedelta(hours=1, minutes=46, seconds=40).total_seconds())

    Other parameters can be provided as documented at
    https://developers.google.com/youtube/player_parameters#Parameters
    
    When converting the notebook using nbconvert, a jpeg representation of the video
    will be inserted in the document.
      ,  Fc                    || _         d                    |          }|r>t          |                    dg                     dgz   }|                    d|            t          t          |           j        |||fi | d S )Nz!https://www.youtube.com/embed/{0}r   zallow="autoplay"rQ   )r%   r   )idry   listgetupdater&   r   r'   )	r+   r   r   r   allow_autoplayr   rw   r   r.   s	           r/   r'   zYouTubeVideo.__init__I  s    188<< 	5&**Xr22337I6JJFMM1VM444*lD!!*3vHHHHHHHr0   c                     ddl m} 	  |d                    | j                                                            S # t
          $ r Y d S w xY w)Nr   )urlopenz-https://img.youtube.com/vi/{id}/hqdefault.jpg)r   )urllib.requestr   ry   r   readIOError)r+   r   s     r/   _repr_jpeg_zYouTubeVideo._repr_jpeg_Q  sm    ******	7JQQUYU\Q]]^^cceee 	 	 	44	s   5> 
AA)r   r   F)r   r   r   r   r'   r   r   r   s   @r/   r   r   /  s\         2I I I I I I      r0   r   c                   $     e Zd ZdZd fd	Z xZS )r   zY
    Class for embedding a Vimeo video in an IPython session, based on its video id.
    r   r   c                 x    d                     |          } t          t          |           j        |||fi | d S )Nz"https://player.vimeo.com/video/{0})ry   r&   r   r'   r+   r   r   r   r   rw   r.   s         r/   r'   zVimeoVideo.__init___  sE    077;;(j$(eVFFvFFFFFr0   r   r   r   r   r   r   r'   r   r   s   @r/   r   r   Z  sQ         G G G G G G G G G Gr0   r   c                   $     e Zd ZdZd fd	Z xZS )r   a  
    Class for embedding a Scribd document in an IPython session

    Use the start_page params to specify a starting point in the document
    Use the view_mode params to specify display type one off scroll | slideshow | book

    e.g to Display Wes' foundational paper about PANDAS in book mode from page 3

    ScribdDocument(71048089, width=800, height=400, start_page=3, view_mode="book")
    r   r   c                 x    d                     |          } t          t          |           j        |||fi | d S )Nz)https://www.scribd.com/embeds/{0}/content)ry   r&   r   r'   r   s         r/   r'   zScribdDocument.__init__o  sE    7>>rBB,nd##,S%JJ6JJJJJr0   r   r   r   s   @r/   r   r   c  sQ        	 	K K K K K K K K K Kr0   r   c                   6    e Zd ZdZdZ	 	 	 d
dZd Zd Zd Zd	S )r   aG  Class for embedding a local file link in an IPython session, based on path

    e.g. to embed a link that was generated in the IPython notebook as my/data.txt

    you would do::

        local_file = FileLink("my/data.txt")
        display(local_file)

    or in the HTML notebook, just::

        FileLink("my/data.txt")
    z#<a href='%s' target='_blank'>%s</a>r   <br>c                     t          |          rt          d|z            t          |          | _        || _        || _        || _        dS )a  
        Parameters
        ----------
        path : str
            path to the file or directory that should be formatted
        url_prefix : str
            prefix to be prepended to all files to form a working link [default:
            '']
        result_html_prefix : str
            text to append to beginning to link [default: '']
        result_html_suffix : str
            text to append at the end of link [default: '<br>']
        zICannot display a directory using FileLink. Use FileLinks to display '%s'.N)r	   r#   r   path
url_prefixresult_html_prefixresult_html_suffix)r+   r   r   r   r   s        r/   r'   zFileLink.__init__  s[    $ ;; 	7 /156 7 7 7TNN	$"4"4r0   c           	          d                     | j        t          | j                  g          }d                     | j        | j        |t          | j        d          fz  | j        g          S )Nr   F)quote)r   r   html_escaper   r   html_link_strr   )r+   rK   s     r/   _format_pathzFileLink._format_path  sm    WWdo{49'='=>??ww/*TYe!D!D!DEF/1 2 2 	2r0   c                 f    t          | j                  s
d| j        z  S |                                 S )z!return html link to file
        zxPath (<tt>%s</tt>) doesn't exist. It may still be in the process of being generated, or you may have the incorrect path.)r   r   r   r   s    r/   r}   zFileLink._repr_html_  s@     di   	3& )-	2 3
   """r0   c                 *    t          | j                  S )z%return absolute path to file
        )r   r   r   s    r/   __repr__zFileLink.__repr__  s     ty!!!r0   N)r   r   r   )	r   r   r   r   r   r'   r   r}   r   re   r0   r/   r   r   s  sq          :M $&$*	5 5 5 542 2 2	# 	# 	#" " " " "r0   r   c                   R    e Zd ZdZ	 	 	 	 	 	 	 ddZ	 ddZ	 dd	Z	 ddZd Zd Z	dS )r   aN  Class for embedding local file links in an IPython session, based on path

    e.g. to embed links to files that were generated in the IPython notebook
    under ``my/data``, you would do::

        local_files = FileLinks("my/data")
        display(local_files)

    or in the HTML notebook, just::

        FileLinks("my/data")
    r   Nr   Tc	                 2   t          |          rt          d|z            || _        |                    d          }|| _        || _        || _        || _        |p|                                 | _	        |p| 
                                | _        || _        dS )a  
        See :class:`FileLink` for the ``path``, ``url_prefix``,
        ``result_html_prefix`` and ``result_html_suffix`` parameters.

        included_suffixes : list
          Filename suffixes to include when formatting output [default: include
          all files]

        notebook_display_formatter : function
          Used to format links for display in the notebook. See discussion of
          formatter functions below.

        terminal_display_formatter : function
          Used to format links for display in the terminal. See discussion of
          formatter functions below.

        Formatter functions must be of the form::

            f(dirname, fnames, included_suffixes)

        dirname : str
          The name of a directory
        fnames : list
          The files in that directory
        included_suffixes : list
          The file suffixes that should be included in the output (passing None
          meansto include all suffixes in the output in the built-in formatters)
        recursive : boolean
          Whether to recurse into subdirectories. Default is True.

        The function should return a list of lines that will be printed in the
        notebook (if passing notebook_display_formatter) or the terminal (if
        passing terminal_display_formatter). This function is iterated over for
        each directory in self.path. Default formatters are in place, can be
        passed here to support alternative formatting.

        zDCannot display a file using FileLinks. Use FileLink to display '%s'./N)r   r#   included_suffixesrstripr   r   r   r   _get_notebook_display_formatternotebook_display_formatter_get_terminal_display_formatterterminal_display_formatter	recursive)	r+   r   r   r   r   r   r   r   r   s	            r/   r'   zFileLinks.__init__  s    \ $<< 	6 .045 6 6 6!2{{3	$"4"4 (Q4+O+O+Q+Q 	' (Q4+O+O+Q+Q 	' #r0   c                      dfd	}|S )ak  generate built-in formatter function

        this is used to define both the notebook and terminal built-in
         formatters as they only differ by some wrapper text for each entry

        dirname_output_format: string to use for formatting directory
         names, dirname will be substituted for a single "%s" which
         must appear in this string
        fname_output_format: string to use for formatting file names,
         if a single "%s" appears in the string, fname will be substituted
         if two "%s" appear in the string, the path to fname will be
          substituted for the first and fname will be substituted for the
          second
        fp_format: string to use for formatting filepaths, must contain
         exactly two "%s" and the dirname will be substituted for the first
         and fname will be substituted for the second
        Nc                    g }g }|D ]M}t          t          | |                    r.|t          |          d         |v r|                    |           Nt	          |          dk    rnf	| z  }|                    |           |D ]I}| |fz  } |          }	 
||fz  }n# t
          $ r 
|z  }Y nw xY w|                    |           J|S )NrQ   r   )r   r   r   appendrV   rn   )dirnamefnamesr   resultdisplay_fnamesfnamedirname_output_linerK   fname_output_linedirname_output_formatfname_output_format
fp_cleaner	fp_formats            r/   rc   z+FileLinks._get_display_formatter.<locals>.f  s7   F  N 3 34..// 3)1 *.???$++E222>""a''  '<g&E#1222+ 
5 
5E"ge_4B!-'Z^^H,?2u+,M))$ H H H,?%,G)))H MM"34444Ms   B%%B76B7r   re   )r+   r   r   r   r   rc   s    ```` r/   _get_display_formatterz FileLinks._get_display_formatter  s;    (	 	 	 	 	 	 	 	 	@ r0   &nbsp;&nbsp;c                     | j         dz   | j        z   }| j         |z   | j        z   | j        z   }| j        dz   }t          dk    rd }nd}|                     ||||          S )z: generate function to use for notebook formatting
        %s/%s/%s\c                 .    |                      dd          S )Nr   r   )replace)rK   s    r/   r   z=FileLinks._get_notebook_display_formatter.<locals>.fp_cleanerE  s     zz$s+++r0   N)r   r   r   r   r   r   )r+   spacerr   r   r   r   s         r/   r   z)FileLinks._get_notebook_display_formatter9  s    
 
	 5	(4+B	B 	 
	 6	)D,>	>AX	X 	Og-	$;;, , , , J**+@+>+4+57 7 	7r0     c                 B    d}|dz   }d}|                      |||          S )z: generate function to use for terminal formatting
        r   z%sr   )r   )r+   r   r   r   r   s        r/   r   z)FileLinks._get_terminal_display_formatterR  s:     !&$tm	**+@+>+46 6 	6r0   c                 >   g }| j         r"t          t          | j                            }n"t	          t          | j                            g}|                                 |D ]%\  }}}||                     ||| j                  z  }&d                    |          S )N
)	r   r   r
   r   nextsortr   r   r   r+   result_lines
walked_dirr   subdirsr   s         r/   r   zFileLinks._format_path^  s    > 	1d49oo..JJtDI//0J(2 	e 	e$GWfD;;GVTMcdddLLyy&&&r0   c                 >   g }| j         r"t          t          | j                            }n"t	          t          | j                            g}|                                 |D ]%\  }}}||                     ||| j                  z  }&d                    |          S )z0return newline-separated absolute paths
        r   )	r   r   r
   r   r   r   r   r   r   r   s         r/   r   zFileLinks.__repr__i  s     > 	1d49oo..JJtDI//0J(2 	e 	e$GWfD;;GVTMcdddLLyy&&&r0   )r   Nr   r   NNTr   )r   )r   )
r   r   r   r   r'   r   r   r   r   r   re   r0   r/   r   r     s          #'$&$*,0,0?# ?# ?# ?#D QU4 4 4 4n 0>7 7 7 74 04
6 
6 
6 
6	' 	' 	'' ' ' ' 'r0   r   c                   <     e Zd ZdZd fd	Zd Zd Zd Zd Z xZ	S )	r   a  Display syntax-highlighted source code.

    This uses Pygments to highlight the code for HTML and Latex output.

    Parameters
    ----------
    data : str
        The code as a string
    url : str
        A URL to fetch the code from
    filename : str
        A local filename to load the code from
    language : str
        The short name of a Pygments lexer to use for highlighting.
        If not specified, it will guess the lexer based on the filename
        or the code. Available lexers: http://pygments.org/docs/lexers/
    Nc                 ^    || _         t                                          |||           d S )Nr   )languager&   r'   )r+   r    r!   r"   r   r.   s        r/   r'   zCode.__init__  s/     dh?????r0   c                     | j         rddlm}  || j                   S | j        rddlm}  || j                  S ddlm}  || j                  S )Nr   )get_lexer_by_name)get_lexer_for_filename)guess_lexer)r   pygments.lexersr   r"   r   r   r    )r+   r   r   r   s       r/   
_get_lexerzCode._get_lexer  s    = 	*999999$$T]333] 	*>>>>>>))$-888333333;ty)))r0   c                     | j         S r   )r    r   s    r/   r   zCode.__repr__  s
    yr0   c                     ddl m} ddlm}  |            }d                    |                    d                    }| || j        |                                 |          z   S )Nr   	highlight)HtmlFormatterz<style>{}</style>z.output_html)pygmentsr   pygments.formattersr   ry   get_style_defsr    r   )r+   r   r   fmtstyles        r/   r}   zCode._repr_html_  sw    &&&&&&555555moo#**3+=+=n+M+MNNyyDOO,=,=sCCCCr0   c                 r    ddl m} ddlm}  || j        |                                  |                      S )Nr   r   )LatexFormatter)r   r   r   r  r    r   )r+   r   r  s      r/   _repr_latex_zCode._repr_latex_  sN    &&&&&&666666yDOO$5$5~~7G7GHHHr0   )NNNN)
r   r   r   r   r'   r   r   r}   r  r   r   s   @r/   r   r   w  s         "@ @ @ @ @ @	* 	* 	*  D D DI I I I I I Ir0   r   N)r   htmlr   r   os.pathr   r   r   r   r   r	   osr
   r   r   IPython.core.displayr   r   typingr   r   r   __all__r   r   r   r   r   r   r   r   re   r0   r/   <module>r     sF    ' & & & & & B B B B B B B B B B B B B B B B " " " " " " " " " " A A A A A A A A , , , , , , , , , ,, , ,p p p p pM p p pd)
 )
 )
 )
 )
 )
 )
 )
X) ) ) ) )6 ) ) )VG G G G G G G GK K K K KV K K K @" @" @" @" @" @" @" @"D' ' ' ' ' ' ' 'D.I .I .I .I .I .I .I .I .I .Ir0   