
                                 d Z ddlZddlZddlZddlZddlZddlZej                  j                  rej                  rd Z
nd Z
d Zda ej                         Zdad Zg Zej$                  j'                  ej(                        Zej-                  e       ej$                  j/                  e      Zej$                  j3                  e      ej$                  j3                  e      k7  rej-                  e       dZej6                  dk(  rej9                  d	      rd
Zej$                  j;                  ej$                  j=                  e      d      Zej-                  e       ej$                  j;                  ej$                  j=                  e      d      Z e ek7  rej-                  e        d Z! G d d      Z"d Z# G d d      Z$ G d d      Z% G d d      Z&d Z'd Z(d Z)y)z8
PEP-302 and PEP-451 importers for frozen applications.
    Nc                     t         j                  j                  | |z         t         j                  j                  d       y )N
)sysstderrwrite)msgas     pyimod02_importers.pytracer      s*    

q!

    c                      y )N )r   r	   s     r
   r   r   $   s    r   c                     ddl m} t        j                  |       j                  } ||      }t        j
                  dd      }|j                  | j                  |d               S )a  
    Decode bytes representing source code and return the string. Universal newline support is used in the decoding.
    Based on CPython's implementation of the same functionality:
    https://github.com/python/cpython/blob/3.9/Lib/importlib/_bootstrap_external.py#L679-L688
    r   )detect_encodingNT)decoder	translate)tokenizer   ioBytesIOreadlineIncrementalNewlineDecoderdecode)source_bytesr   source_bytes_readlineencodingnewline_decoders        r
   _decode_sourcer   (   sY     )JJ|4==45H2244PO!!,"5"5hqk"BCCr   c                  p    t         5  t        t        t              at        cd d d        S # 1 sw Y   y xY w)N)_pyz_tree_lock	_pyz_tree_build_pyz_prefix_treepyz_archiver   r   r
   get_pyz_toc_treer#   @   s/     
 .{;I  s   ,5FdarwinzContents/FrameworksT	Resourcesc                 N   t               }| j                  j                         D ]}  \  }}|j                  d      }|d   }|}|t        j
                  t        j                  hv r|D ]  }|j                  |i       } Z|d d D ]  }|j                  |i       } d||d   <    |S )N.r    )dicttocitemssplitpyimod01_archivePYZ_ITEM_PKGPYZ_ITEM_NSPKG
setdefault)r"   tree
entry_name
entry_dataname_componentstypecodecurrentname_components           r
   r!   r!   k   s    6D"-//"7"7"9 .
J$**3/a=(557G7V7VWW"1 A!,,^R@A #2#2"6 A!,,^R@A+-GOB'(. Kr   c                       e Zd ZdZd Zed        Zd Zd Ze	d        Z
d Zd Zdd
Zej                  d	d dk  rd Zd Zy	y	)PyiFrozenFinderaG  
    PyInstaller's frozen path entry finder for specific search path.

    Per-path instances allow us to properly translate the given module name ("fullname") into full PYZ entry name.
    For example, with search path being `sys._MEIPASS`, the module "mypackage.mod" would translate to "mypackage.mod"
    in the PYZ archive. However, if search path was `sys._MEIPASS/myotherpackage/_vendored` (for example, if
    `myotherpacakge` added this path to `sys.path`), then "mypackage.mod" would need to translate to
    "myotherpackage._vendored.mypackage.mod" in the PYZ archive.
    c                 N    | j                   j                   d| j                   dS )N())	__class____name___path)selfs    r
   __repr__zPyiFrozenFinder.__repr__   s$    ..))*!DJJ<q99r   c                     t        d|       	  | |      }t        d       |S # t        $ r}t        d|         d }~ww xY w)Nz0PyInstaller: running path finder hook for path: zPyInstaller: hook succeededzPyInstaller: hook failed: )r   	Exception)clspathfinderes       r
   	path_hookzPyiFrozenFinder.path_hook   sQ    @IJ	YF/0M 	.qc23	s   % 	A=Ac                    || _         t        | _        t        D ]6  }	 t        j
                  j                  ||      }|j                  d      r6 n t        d      t        j
                  j                  |      rt        d      |dk(  rd| _        y dj                  |j                  t        j
                  j                              | _        y # t        $ r Y w xY w)Nz..zIFailed to determine relative path w.r.t. top-level application directory.zonly directories are supportedr'   r)   )r@   r"   _pyz_archive_TOP_LEVEL_DIRECTORY_PATHSosrF   relpath
ValueError
startswithImportErrorisfile_pyz_entry_prefixjoinr-   sep)rA   rF   top_level_pathrelative_paths       r
   __init__zPyiFrozenFinder.__init__   s    
' 9 	kN "n E ''-	k ijj
 77>>$>??C%'D"%(XXm.A.A"''++.N%OD"'  s    C	CCc                 j    |j                  d      d   }| j                  r| j                  dz   |z   S |S )zz
        Convert module fullname into PYZ entry name, subject to the prefix implied by this finder's search path.
        r'      )
rpartitionrS   )rA   fullnametail_modules      r
   _compute_pyz_entry_namez'PyiFrozenFinder._compute_pyz_entry_name   s>     ))#.q1!!))C/+==r   c                 .   t        | d      r| j                  S d}d| _        t        t        j                        D ]>  \  }}|| j
                  k(  rd}|s	  || j                        | _         | j                  S  | j                  S # t        $ r Y Xw xY w)aB  
        Opportunistically create a *fallback finder* using `sys.path_hooks` entries that are located *after* our hook.
        The main goal of this exercise is to obtain an instance of python's FileFinder, but in theory any other hook
        that comes after ours is eligible to be a fallback.

        Having this fallback allows our finder to "cooperate" with python's FileFinder, as if the two were a single
        finder, which allows us to work around the python's PathFinder permitting only one finder instance per path
        without subclassing FileFinder.
        _fallback_finderFNT)hasattrr`   	enumerater   
path_hooksrI   r@   rQ   )rA   our_hook_foundidxhooks       r
   fallback_finderzPyiFrozenFinder.fallback_finder   s     4+,(((  $"3>>2 	ICt~~%!%!(,TZZ(8% $$$	 $$$  s   B	BBc                     t        | d      s| j                         | _        | j                  y| j                  j                  ||      S )a@  
        Attempt to find the spec using fallback finder, which is opportunistically created here. Typically, this would
        be python's FileFinder, which can discover specs for on-filesystem modules, such as extension modules and
        modules that are collected only as source .py files.

        Having this fallback allows our finder to "cooperate" with python's FileFinder, as if the two were a single
        finder, which allows us to work around the python's PathFinder permitting only one finder instance per path
        without subclassing FileFinder.
        r`   N)ra   _get_fallback_finderr`   	find_spec)rA   r\   targets      r
   _find_fallback_specz#PyiFrozenFinder._find_fallback_spec   sH     t/0$($=$=$?D!  ($$..x@@r   c                 ^    t        | dd      }|t        |d      r|j                          yyy)a<  
        A method which, when called, should invalidate any internal cache used by the finder. Used by
        importlib.invalidate_caches() when invalidating the caches of all finders on sys.meta_path.

        https://docs.python.org/3/library/importlib.html#importlib.abc.MetaPathFinder.invalidate_caches
        r`   Ninvalidate_caches)getattrra   rn   )rA   rg   s     r
   rn   z!PyiFrozenFinder.invalidate_caches   s:     "$(:DA&(;<113 = 'r   Nc           	         t        |  d|d|       | j                  |      }| j                  j                  j	                  |      }|vt        |  d|d       | j
                  Jt        |  d| j
                  d       | j
                  j                  ||      }t        |  d|d       |S t        |  d	       y|d
   }t        |  d|d|d|        |t        j                  k(  rtt        j                  |d      }t        j                  j                  t        j                  |j!                  dt        j                  j"                              g|_        |S |t        j&                  k(  }t)        || j                  ||      }	|	j                  }
t        j                  ||	||
      }d|_        |r%t        j                  j-                  |
      g|_        |S )a  
        A method for finding a spec for the specified module. The finder will search for the module only within the
        path entry to which it is assigned. If a spec cannot be found, None is returned. When passed in, target is a
        module object that the finder may use to make a more educated guess about what spec to return.

        https://docs.python.org/3/library/importlib.html#importlib.abc.PathEntryFinder.find_spec
        z": find_spec: called with fullname=z	, target=Nz: find_spec: z not found in PYZ...z6: find_spec: attempting resolve using fallback finder r'   z,: find_spec: fallback finder returned spec: z.: find_spec: fallback finder is not available.r   z: find_spec: found z in PYZ as z, typecode=)namer"   pyz_entry_name
is_package)rs   originT)r   r^   rK   r+   getrg   rj   r.   r0   _frozen_importlib
ModuleSpecrM   rF   rT   r   _MEIPASSreplacerU   submodule_search_locationsr/   PyiFrozenLoaderhas_locationdirname)rA   r\   rk   rr   r4   fallback_specr6   specrs   loaderrt   s              r
   rj   zPyiFrozenFinder.find_spec  s    	8Ih\Z[ 55h? &&**..~>
 TF-|3GHI##/TUYUiUiTllmno $ 4 4 > >x PJ=J[[\]^$$LMN a=)([@RR]^f]ghi'666 %//$?D S\\>+A+A#rww{{+ST/D+
 K!1!>!>>
 !)))!	
  !++!	
 ! /1wwv/F.GD+r   rZ   )      c                 h    | j                  |      }|dg fS |j                  |j                  xs g fS )a  
            A legacy method for finding a loader for the specified module. Returns a 2-tuple of (loader, portion) where
            portion is a sequence of file system locations contributing to part of a namespace package. The loader may
            be None while specifying portion to signify the contribution of the file system locations to a namespace
            package. An empty list can be used for portion to signify the loader is not part of a namespace package. If
            loader is None and portion is the empty list then no loader or location for a namespace package were found
            (i.e. failure to find anything for the module).

            Deprecated since python 3.4, removed in 3.12.
            N)rj   r   rz   )rA   r\   r   s      r
   find_loaderzPyiFrozenFinder.find_loaderZ  s:     >>(+D|Rx;; ? ? E2EEr   c                 .    | j                  |      \  }}|S )z
            A concrete implementation of Finder.find_module() which is equivalent to self.find_loader(fullname)[0].

            Deprecated since python 3.4, removed in 3.12.
            )r   )rA   r\   r   portionss       r
   find_modulezPyiFrozenFinder.find_modulel  s      $//9FHMr   )N)r?   
__module____qualname____doc__rB   classmethodrI   rX   r^   propertyrg   rl   rn   rj   r   version_infor   r   r   r   r
   r:   r:   }   sz    :  PB	 % %BA(4Nd g%	F$	) &r   r:   c                       fd}|S )Nc                 v    | j                   |k7  rt        d| j                    d| |       | |g|i |S )Nzloader for z cannot handle rq   )rq   rQ   )rA   rq   argskwargsmethods       r
   _check_name_wrapperz(_check_name.<locals>._check_name_wrapper|  sE    99DII;odVLSWXXdD242622r   r   )r   r   s   ` r
   _check_namer   {  s    3
 r   c                       e Zd ZdZd Zd Zd Z	 ed        Zed        Z	ed        Z
ed        Zed	        Zd
 Zed        Zy)r{   a  
    PyInstaller's frozen loader for modules in the PYZ archive, which are discovered by PyiFrozenFinder.

    Since this loader is instantiated only from PyiFrozenFinder and since each loader instance is tied to a specific
    module, the fact that the loader was instantiated serves as the proof that the module exists in the PYZ archive.
    Hence, we can avoid any additional validation in the implementation of the loader's methods.
    c                    || _         || _        || _        |rXt        j                  j                  t        j                  |j                  dt        j                  j                        d      }nYt        j                  j                  t        j                  |j                  dt        j                  j                        dz         }|| _
        || _        y )Nr'   __init__.py.py)rK   _pyz_entry_name_is_packagerM   rF   rT   r   rx   ry   rU   rq   )rA   rq   r"   rr   rs   module_files         r
   rX   zPyiFrozenLoader.__init__  s     (-% '',,s||^5K5KCQSQXQXQ\Q\5]_lmK'',,s||^5K5KCQSQXQXQ\Q\5]`e5efK
 		r   c                      y)a   
        A method that returns the module object to use when importing a module. This method may return None, indicating
        that default module creation semantics should take place.

        https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.create_module
        Nr   )rA   r   s     r
   create_modulezPyiFrozenLoader.create_module  s     r   c                 
   |j                   }| j                  |j                        }|t        d|j                  d      t	        |d      sJ |j
                  |j
                  |_        t        ||j                         y)a[  
        A method that executes the module in its own namespace when a module is imported or reloaded. The module
        should already be initialized when exec_module() is called. When this method exists, create_module()
        must be defined.

        https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.exec_module
        Nz Failed to retrieve bytecode for !__file__)	__spec__get_coderq   RuntimeErrorra   rz   __path__exec__dict__)rA   moduler   bytecodes       r
   exec_modulezPyiFrozenLoader.exec_module  sy     ==+!A$))aPQQ vz*** **6"==FOXv'r   c                 2    ddl m} |j                  | |      S )aK  
            A legacy method for loading a module. If the module cannot be loaded, ImportError is raised, otherwise the
            loaded module is returned.

            Deprecated since python 3.4, slated for removal in 3.12 (but still present in python's own FileLoader in
            both v3.12.4 and v3.13.0rc1).
            r   N)importlib._bootstrap
_bootstrap_load_module_shim)rA   r\   r   s      r
   load_modulezPyiFrozenLoader.load_module  s     6//h??r   c                     | j                   S )a  
        A method that is to return the value of __file__ for the specified module. If no path is available, ImportError
        is raised.

        If source code is available, then the method should return the path to the source file, regardless of whether a
        bytecode was used to load the module.

        https://docs.python.org/3/library/importlib.html#importlib.abc.ExecutionLoader.get_filename
        rF   )rA   r\   s     r
   get_filenamezPyiFrozenLoader.get_filename  s     yyr   c                 L    | j                   j                  | j                        S )aL  
        Return the code object for a module, or None if the module does not have a code object (as would be the case,
        for example, for a built-in module). Raise an ImportError if loader cannot find the requested module.

        https://docs.python.org/3/library/importlib.html#importlib.abc.InspectLoader.get_code
        )rK   extractr   )rA   r\   s     r
   r   zPyiFrozenLoader.get_code  s!       (()=)=>>r   c                     | j                   }	 t        |d      5 }|j                         }ddd       t              S # 1 sw Y   xY w# t        $ r Y yw xY w)a  
        A method to return the source of a module. It is returned as a text string using universal newlines, translating
        all recognized line separators into '
' characters. Returns None if no source is available (e.g. a built-in
        module). Raises ImportError if the loader cannot find the module specified.

        https://docs.python.org/3/library/importlib.html#importlib.abc.InspectLoader.get_source
        rbN)rF   openreadr   FileNotFoundError)rA   r\   filenamefpr   s        r
   
get_sourcezPyiFrozenLoader.get_source  sa     99	h% )!wwy)!,//) ) ! 	 		s%   A
 >A
 AA
 
	AAc                     | j                   S )a  
        A method to return a true value if the module is a package, a false value otherwise. ImportError is raised if
        the loader cannot find the module.

        https://docs.python.org/3/library/importlib.html#importlib.abc.InspectLoader.is_package
        )r   )rA   r\   s     r
   rs   zPyiFrozenLoader.is_package  s     r   c                 f    t        |d      5 }|j                         cddd       S # 1 sw Y   yxY w)u  
        A method to return the bytes for the data located at path. Loaders that have a file-like storage back-end that
        allows storing arbitrary data can implement this abstract method to give direct access to the data stored.
        OSError is to be raised if the path cannot be found. The path is expected to be constructed using a module’s
        __file__ attribute or an item from a package’s __path__.

        https://docs.python.org/3/library/importlib.html#importlib.abc.ResourceLoader.get_data
        r   N)r   r   )rA   rF   r   s      r
   get_datazPyiFrozenLoader.get_data  s.     $ 	779	 	 	s   '0c                     t        |       S )zO
        Return resource reader compatible with `importlib.resources`.
        )PyiFrozenResourceReader)rA   r\   s     r
   get_resource_readerz#PyiFrozenLoader.get_resource_reader,  s    
 't,,r   N)r?   r   r   r   rX   r   r   r   r   r   r   r   rs   r   r   r   r   r
   r{   r{     s     @(2 		@ 
	@ 
 
 ? ?  .     - -r   r{   c                   4    e Zd ZdZd Zd Zd Zd Zd Zd Z	y)	r   a  
    Resource reader for importlib.resources / importlib_resources support.

    Supports only on-disk resources, which should cover the typical use cases, i.e., the access to data files;
    PyInstaller collects data files onto filesystem, and as of v6.0.0, the embedded PYZ archive is guaranteed
    to contain only .pyc modules.

    When listing resources, source .py files will not be listed as they are not collected by default. Similarly,
    sub-directories that contained only .py files are not reconstructed on filesystem, so they will not be listed,
    either. If access to .py files is required for whatever reason, they need to be explicitly collected as data files
    anyway, which will place them on filesystem and make them appear as resources.

    For on-disk resources, we *must* return path compatible with pathlib.Path() in order to avoid copy to a temporary
    file, which might break under some circumstances, e.g., metpy with importlib_resources back-port, due to:
    https://github.com/Unidata/MetPy/blob/a3424de66a44bf3a92b0dcacf4dff82ad7b86712/src/metpy/plots/wx_symbols.py#L24-L25
    (importlib_resources tries to use 'fonts/wx_symbols.ttf' as a temporary filename suffix, which fails as it contains
    a separator).

    Furthermore, some packages expect files() to return either pathlib.Path or zipfile.Path, e.g.,
    https://github.com/tensorflow/datasets/blob/master/tensorflow_datasets/core/utils/resource_utils.py#L81-L97
    This makes implementation of mixed support for on-disk and embedded resources using importlib.abc.Traversable
    protocol rather difficult.

    So in order to maximize compatibility with unfrozen behavior, the below implementation is basically equivalent of
    importlib.readers.FileReader from python 3.10:
      https://github.com/python/cpython/blob/839d7893943782ee803536a47f1d4de160314f85/Lib/importlib/readers.py#L11
    and its underlying classes, importlib.abc.TraversableResources and importlib.abc.ResourceReader:
      https://github.com/python/cpython/blob/839d7893943782ee803536a47f1d4de160314f85/Lib/importlib/abc.py#L422
      https://github.com/python/cpython/blob/839d7893943782ee803536a47f1d4de160314f85/Lib/importlib/abc.py#L312
    c                 `    dd l }|j                  |j                        j                  | _        y )Nr   )pathlibPathrF   parent)rA   r   r   s      r
   rX   z PyiFrozenResourceReader.__init__S  s!     LL-44	r   c                 ^    | j                         j                  |      j                  d      S )Nr   )filesjoinpathr   )rA   resources     r
   open_resourcez%PyiFrozenResourceReader.open_resourceZ  s$    zz|$$X.33D99r   c                 J    t        | j                  j                  |            S )N)strrF   r   )rA   r   s     r
   resource_pathz%PyiFrozenResourceReader.resource_path]  s    499%%h/00r   c                 \    | j                         j                  |      j                         S )N)r   r   is_file)rA   rF   s     r
   is_resourcez#PyiFrozenResourceReader.is_resource`  s"    zz|$$T*2244r   c                 L    d | j                         j                         D        S )Nc              3   4   K   | ]  }|j                     y w)Nr   ).0items     r
   	<genexpr>z3PyiFrozenResourceReader.contents.<locals>.<genexpr>d  s     =d		=s   )r   iterdir)rA   s    r
   contentsz PyiFrozenResourceReader.contentsc  s    =djjl&:&:&<==r   c                     | j                   S )Nr   )rA   s    r
   r   zPyiFrozenResourceReader.filesf  s    yyr   N)
r?   r   r   r   rX   r   r   r   r   r   r   r   r
   r   r   4  s%    <5:15>r   r   c                       e Zd ZdZd Zd Zy)PyiFrozenEntryPointLoaderz]
    A special loader that enables retrieval of the code-object for the __main__ module.
    c                 .    | j                   j                  S )N)r>   r?   )rA   s    r
   rB   z"PyiFrozenEntryPointLoader.__repr__n  s    ~~&&&r   c                 f    |dk(  rt         j                  d   j                  S t        |  d|      )N__main__z cannot handle module )r   modules_pyi_main_corQ   )rA   r\   s     r
   r   z"PyiFrozenEntryPointLoader.get_codeq  s8    z! ;;z*777TF"8EFFr   N)r?   r   r   r   rB   r   r   r   r
   r   r   j  s    'Gr   r   c                     t        t        d      st        d      	 t        j                  t        j
                  d      at        t        d       t        j                  D ]3  }t        |dd      dk(  st        j                  j                  |        n t        t        j                        D ]Z  \  }}t        |dd      d	k(  st        d
|dz    d       t        j                  j                  |dz   t         j"                          n: t        d       t        j                  j                  dt         j"                         t%                t        j&                  j)                  t        j*                  d       	 t-               t        j.                  d   _        t        j2                  dk\  rt5                yy# t        $ r} t        d      | d} ~ ww xY w# t        $ r Y Gw xY w)z`
    Install PyInstaller's frozen finders/loaders/importers into python's import machinery.
    _pyinstaller_pyzz,Bootloader did not set sys._pyinstaller_pyz!T)check_pymagicz#Failed to setup PYZ archive reader!Nr?   WindowsRegistryFinderzipimporterz0PyInstaller: inserting our finder hook at index    z in sys.path_hooks.zbPyInstaller: zipimporter hook not found in sys.path_hooks! Prepending our finder hook to the list.r   r   )r      )ra   r   r   r.   ZlibArchiveReaderr   r"   rD   delattr	meta_pathro   removerb   rc   r   insertr:   rI   _patch_zipimporter_get_sourcepath_importer_cachepoprx   r   r   
__loader__r   _fixup_frozen_stdlib)rH   entryre   s      r
   installr   z  s    3*+IJJI&889M9M]ab C#$
  5*d+/FFMM  '  / <
U5*d+}<DS1WIM`abNN!!#'?+D+DE	< 	rsa!:!:; "#
 d3-F-HJ*
 7" #Q  I@AqHIH  s)   %F?   G ?	GGG	G('G(c                  \   dd l } t        j                  s	 t        j                  t        _        t        j
                  j                         D ]  \  }}| j                  |      s| j                  |      }|j                  j                  }|j                  }|r|dz  }t        j                  j                  t        j                  g|j                  d       dz   }t!        |d      s	 ||_        |j$                  |dk7  s||_         y # t        $ r Y w xY w# t        $ r Y 7w xY w)Nr   z	.__init__r'   z.pycr   zimportlib._bootstrap)_impr   _stdlib_dirrx   AttributeErrorr   r,   	is_frozenis_frozen_packager   loader_stateorignamerM   rF   rT   r-   ra   r   r   )r   module_namer   is_pkgr   	orig_namer   s          r
   r   r     s    ??	!llCO  #{{002 -V~~k*''4 33 ))	$I 77<<Dys/CDvM vz*"*   (Y:P-P$,L!7-  		4 " s#   D ,D	DD	D+*D+c                  f    dd l } | j                  j                  fd}|| j                  _        y )Nr   c                 8    | |      }||S t         j                  j                  | j                        dk7  ry | j	                  |      r1t        j                  j
                  g |j                  d      d }n.t        j                  j
                  |j                  d       dz   }t         j                  j                  t        |      }	 t        |d      5 }|j                         }d d d        t              S # 1 sw Y   xY w# t        $ r Y y w xY w)Nzbase_library.zipr'   r   r   r   )rM   rF   basenamearchivers   rT   r-   _RESOLVED_TOP_LEVEL_DIRECTORYr   r   r   r   )rA   r\   sourcer   r   r   _orig_get_sources         r
   _get_sourcez2_patch_zipimporter_get_source.<locals>._get_source  s    
 "$1M 77DLL)-?? ??8$ww||HX^^C%8H-HHww||X^^C%89EAH77<< =xH	h% )!wwy)!,//) ) ! 	 		s*   D D.D D
D 	DD)	zipimportr   r   )r  r  r  s     @r
   r   r     s-     ,,77> (3I$r   )*r   r   rM   r   rv   _threadr.   flagsverboser   r   r   r"   RLockr   r    r#   rL   rF   normpathrx   _TOP_LEVEL_DIRECTORYappendrealpathr  normcase_is_macos_app_bundleplatformendswithrT   r}    _ALTERNATIVE_TOP_LEVEL_DIRECTORY)_RESOLVED_ALTERNATIVE_TOP_LEVEL_DIRECTORYr!   r:   r   r{   r   r   r   r   r   r   r   r
   <module>r     s    	 	   99
D 
 	    ww''5   ! !"6 7 !# 0 01E F 7712bgg6F6FG[6\\%%&CD  <<8 4 = =>S T')ww||
,-($ %%&FG02
561- 14TT"))*ST$z z|m- m-`3 3lG G 9@(-^$3r   