
    Lga                       U d dl m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d dlZd dl	Z	d dl
Z
d dlZd dlmZmZmZ d dlmZmZmZ d dlZd dlmZ d Z e       Zdej2                  v rej2                  d   Zn6ej6                  j9                  ej6                  j;                  d      d	d
      Zi Zded<   eZ  e
jB                         Z"g Z#ded<   dPdZ$	 	 dQ	 	 	 	 	 	 	 	 	 dRdZ%dSdZ&dTdZ'edd	 	 	 	 	 dUd       Z(e	 	 	 	 	 	 dVd       Z(dd	 	 	 	 	 dWdZ(dXdYdZ)dZdZ*ef	 	 	 	 	 d[dZ+	 d\	 	 	 	 	 	 	 d]dZ, G d d      Z-edfd^dZ.de#f	 	 	 	 	 d_dZ/eddf	 	 	 	 	 	 	 	 	 d`d Z0eefdad!Z1ee#f	 	 	 	 	 	 	 dbd"Z2dcd#Z3i d$d%d&d'd(d)d*d+d,d-d.d/d0d1d2d3d4d5d6d7d8d9d:d;d<d=d>d?d@dAdBdCdAdDdEdFdGdHZ4dIedJ<   e4ef	 	 	 	 	 dddKZ5e4f	 	 	 	 	 dedLZ6dfdMZ7dgdNZ8dhdOZ9 e/         e9        y)i    )annotationsN)IteratorMappingSequence)AnyLiteraloverload)
no_defaultc                 j   t        j                  dd      t         j                  j                  t        j
                  dd      gt        j                  D  cg c]#  } t         j                  j                  | dd      % c} t         j                  j                  t         j                  j                  d      dd      }dt         j                  v r"|j                  t         j                  d          t        t        t        t        j                  t        |                              }|S c c} w )z~Get locations to search for YAML configuration files.

    This logic exists as a separate function for testing purposes.
    DASK_ROOT_CONFIGz	/etc/dasketcdask~.configDASK_CONFIG)osgetenvpathjoinsysprefixsitePREFIXES
expanduserenvironappendlistreverseddictfromkeys)r   pathss     +lib/python3.12/site-packages/dask/config.py
_get_pathsr#      s     			$k2
SZZ/ =AMM	JM&"'',,vuf
-M	J 	RWW'',i@	E 

"RZZ./ $t}}Xe_=>?@EL 
Ks   (D0r   r   r   r   r   configlist[Mapping]defaultsc                    	 | |v r| S 	 d| v r| j                  dd      n| j                  dd      }||v r|S | S # t         $ r | cY S w xY w)a@  Return the canonical name for a key.

    Handles user choice of '-' or '_' conventions by standardizing on whichever
    version was set first. If a key already exists in either hyphen or
    underscore form, the existing version is the canonical name. If neither
    version exists the original key is used as is.
    _-)	TypeErrorreplace)kr$   altks      r"   canonical_namer.   <   sd    ;H  #&(199S#		#s0CDv~H  s   9 AAc           	     L   |j                         D ]  \  }}t        ||       }t        |t              rG|| vs| |   t        | |   t              si | |<   t        | |   |||r|j                  |      nd       i|dk(  s|| vs|dk(  sx|s{||v s||   | |   k(  s|| |<    | S )a  Update a nested dictionary with values from another

    This is like dict.update except that it smoothly merges nested values

    This operates in-place and modifies old

    Parameters
    ----------
    priority: string {'old', 'new', 'new-defaults'}
        If new (default) then the new dictionary has preference.
        Otherwise the old dictionary does.
        If 'new-defaults', a mapping should be given of the current defaults.
        Only if a value in ``old`` matches the current default, it will be
        updated with ``new``.

    Examples
    --------
    >>> a = {'x': 1, 'y': {'a': 2}}
    >>> b = {'x': 2, 'y': {'b': 3}}
    >>> update(a, b)  # doctest: +SKIP
    {'x': 2, 'y': {'a': 2, 'b': 3}}

    >>> a = {'x': 1, 'y': {'a': 2}}
    >>> b = {'x': 2, 'y': {'b': 3}}
    >>> update(a, b, priority='old')  # doctest: +SKIP
    {'x': 1, 'y': {'a': 2, 'b': 3}}

    >>> d = {'x': 0, 'y': {'a': 2}}
    >>> a = {'x': 1, 'y': {'a': 2}}
    >>> b = {'x': 2, 'y': {'a': 3, 'b': 3}}
    >>> update(a, b, priority='new-defaults', defaults=d)  # doctest: +SKIP
    {'x': 1, 'y': {'a': 3, 'b': 3}}

    See Also
    --------
    dask.config.merge
    Npriorityr&   newnew-defaults)itemsr.   
isinstancer   r   updateget)oldr2   r1   r&   r,   vs         r"   r6   r6   S   s    V 		11c"a!|s1v~ZA5MAA!,4a$	 E!C<. X s1v- A/ 2 J    c                 0    i }| D ]  }t        ||        |S )aS  Update a sequence of nested dictionaries

    This prefers the values in the latter dictionaries to those in the former

    Examples
    --------
    >>> a = {'x': 1, 'y': {'a': 2}}
    >>> b = {'y': {'b': 3}}
    >>> merge(a, b)  # doctest: +SKIP
    {'x': 1, 'y': {'a': 2, 'b': 3}}

    See Also
    --------
    dask.config.update
    )r6   )dictsresultds      r"   merger?      s"      Fvq Mr:   c                V   	 t        |       5 }t        j                  |j                               }ddd       5t        |t              s%t        d| dt        |      j                   d      |S # 1 sw Y   BxY w# t        $ r Y yt
        $ r}t        d| d|       dd}~ww xY w)zhA helper for loading a config file from a path, and erroring
    appropriately if the file is malformed.NzA dask config file at z( is malformed, original error message:

zM is malformed - config files must have a dict as the top level object, got a  instead)openyaml	safe_loadreadOSError	Exception
ValueErrorr5   r   type__name__)r   fr$   excs       r"   _load_config_filerM      s    
$Z1^^AFFH-F  *VT":$TH -559&\5J5J4K8U
 	
 M Z  $TH -%!
 	s3   A> $A2A> 2A;7A> >	B(	B(B##B(Freturn_pathsc                    y N r!   rO   s     r"   collect_yamlrT      s     r:   c                    y rQ   rR   rS   s     r"   rT   rT      s     +.r:   c          	   #    K   g }| D ]  t         j                  j                        s#t         j                  j                        r8	 |j	                  t        fdt        j                        D                     z|j                          |D ]0  t              }||rt        j                        |f -| 2 y# t        $ r Y w xY ww)zCollect configuration from yaml files

    This searches through a list of paths, expands to find all yaml or json
    files, and then parses each file.
    c              3     K   | ]V  }t         j                  j                  |      d    j                         dv r"t         j                  j	                  |       X yw)   )z.jsonz.yamlz.ymlN)r   r   splitextlowerr   ).0pr   s     r"   	<genexpr>zcollect_yaml.<locals>.<genexpr>   sP      %5!ww//215;;=9 : GGLLq1%5s   AAN)r   r   existsisdirextendsortedlistdirrF   r   rM   pathlibPath)r!   rO   
file_pathsr$   r   s       @r"   rT   rT      s      J77>>$ww}}T"%% %'ZZ%5  !!$'! & "4(ll4(&00   s4   'CC6C&C(#C	CCCCc                (   | t         j                  } d| v rt        | d         }ni }| j                         D ]H  \  }}|j	                  d      s|dd j                         j                  dd      }t        |      ||<   J i }t        ||       |S )a  Collect config from environment variables

    This grabs environment variables of the form "DASK_FOO__BAR_BAZ=123" and
    turns these into config variables of the form ``{"foo": {"bar-baz": 123}}``
    It transforms the key and value in the following way:

    -  Lower-cases the key text
    -  Treats ``__`` (double-underscore) as nested access
    -  Calls ``ast.literal_eval`` on the value

    Any serialized config passed via ``DASK_INTERNAL_INHERIT_CONFIG`` is also set here.

    NDASK_INTERNAL_INHERIT_CONFIGDASK_   __.r$   )	r   r   deserializer4   
startswithrZ   r+   interpret_valueset)envr>   namevaluevarnamer=   s         r"   collect_envru      s     {jj%,:;<yy{e??7#12hnn&..tS9G(/AgJ #
 F&Mr:   c                    	 t        j                  |       S # t        t        f$ r Y nw xY wd d ddd}|j	                  | j                         |       S )NFT)nonenullfalsetrue)astliteral_evalSyntaxErrorrH   r7   rZ   )rs   hardcoded_maps     r"   ro   ro     sX    &&$  "4%NMU[[]E22s    ))c              #     K   |D ]=  }t        |gd      D ]*  \  }}	 t        | |       t        j                  |       , ? y# t        $ r Y ;w xY ww)z?
    Generator yielding paths which contain the given key.
    TrN   rl   N)rT   r7   rc   rd   KeyError)keyr!   path_r   r$   s        r"   paths_containing_keyr   $  s]      (%tDLD&)C' ll4(( E   s'   AAA	AAAAc                X   |t         }t        j                  j                  |      ry|}t        j                  j	                  |t        j                  j                  |             }	 t        j                  j                  |      st        j                  |d       d|t        j                         fz  }t        |       5 }t        |      }ddd       |r5D cg c]*  }|j                         r|j                  d      sd|z   n|, }}t        |d      5 }|j                  dj	                               ddd       	 t        j                  ||       yy# 1 sw Y   xY wc c}w # 1 sw Y   3xY w# t        $ r t        j                   |       Y yw xY w# t        $ r Y yw xY w)	a   
    Copy file to default location if it does not already exist

    This tries to move a default configuration file to a default location if
    if does not already exist.  It also comments out that file by default.

    This is to be used by downstream modules (like dask.distributed) that may
    have default configuration files that they wish to include in the default
    configuration path.

    Parameters
    ----------
    source : string, filename
        Source configuration file, typically within a source directory.
    destination : string, directory
        Destination directory. Configurable by ``DASK_CONFIG`` environment
        variable, falling back to ~/.config/dask.
    comment : bool, True by default
        Whether or not to comment out the config file when copying.
    NT)exist_okz	%s.tmp.%d#z# w )PATHr   r   isfiler   basenamer^   makedirsgetpidrB   r   striprn   writerenamerF   remove)sourcedestinationcomment	directorytmprK   lineslines           r"   ensure_filer   6  sa   .  
ww~~k" I'',,y"''*:*:6*BCKww~~k*KK	D1
 biik ::CfQ   !& % $(::<8LD4KRVV %  
 c31'  		#{+) + 
  
  		# sm   )AF EF /E(F !E-;F E9 E%!F -E62F 9FF FF 	F)(F)c                  p    e Zd ZU dZded<   ded<   ddef	 	 	 	 	 ddZd Zd	 Z	 	 d	 	 	 	 	 	 	 	 	 	 	 dd
Z	y)rp   a  Temporarily set configuration values within a context manager

    Parameters
    ----------
    arg : mapping or None, optional
        A mapping of configuration key-value pairs to set.
    **kwargs :
        Additional key-value pairs to set. If ``arg`` is provided, values set
        in ``arg`` will be applied before those in ``kwargs``.
        Double-underscores (``__``) in keyword arguments will be replaced with
        ``.``, allowing nested values to be easily set.

    Examples
    --------
    >>> import dask

    Set ``'foo.bar'`` in a context, by providing a mapping.

    >>> with dask.config.set({'foo.bar': 123}):
    ...     pass

    Set ``'foo.bar'`` in a context, by providing a keyword argument.

    >>> with dask.config.set(foo__bar=123):
    ...     pass

    Set ``'foo.bar'`` globally.

    >>> dask.config.set(foo__bar=123)  # doctest: +SKIP

    See Also
    --------
    dask.config.get
    r   r$   z?list[tuple[Literal['insert', 'replace'], tuple[str, ...], Any]]_recordNc                   |t         }|5  || _        g | _        |E|j                         D ]2  \  }}t	        |      }| j                  |j                  d      ||       4 |rW|j                         D ]D  \  }}|j                  dd      }t	        |      }| j                  |j                  d      ||       F d d d        y # 1 sw Y   y xY w)Nrk   rj   )global_configr$   r   r4   check_deprecations_assignsplitr+   )selfargr$   lockkwargsr   rs   s          r"   __init__zset.__init__  s     >"F DKDL"%))+JC,S1CLL3? #. "(,,.JC++dC0C,S1CLL3? #1 TTs   B/CCc                    | j                   S rQ   rl   )r   s    r"   	__enter__zset.__enter__  s    {{r:   c                   t        | j                        D ]a  \  }}}| j                  }|dk(  r%|d d D ]  }|j                  |i       } |||d   <   =|d d D ]  }	 ||   }
 |j                  |d   d        c y # t        $ r Y  qw xY w)Nr+   )r   r   r$   
setdefaultr   pop)r   rI   rs   	tracebackopr   r>   r   s           r"   __exit__zset.__exit__  s    '5OBeAY9CS"-A %#$r(9CcF % EE$r(D)  6 $ s   A;;	BBc                p   t        |d   |      }||fz   }t        |      dk(  rL|rD||v r"| j                  j                  d|||   f       n| j                  j                  d|df       |||<   y||vr'|r| j                  j                  d|df       i ||<   d}| j	                  |dd |||   ||       y)a  Assign value into a nested configuration dictionary

        Parameters
        ----------
        keys : Sequence[str]
            The nested path of keys to assign the value.
        value : object
        d : dict
            The part of the nested dictionary into which we want to assign the
            value
        path : tuple[str], optional
            The path history up to this point.
        record : bool, optional
            Whether this operation needs to be recorded to allow for rollback.
        r   rX   r+   insertNF)record)r.   lenr   r   r   )r   keysrs   r>   r   r   r   s          r"   r   zset._assign  s    . T!Wa(sf}t9>!8LL''D!C&(ABLL''4(>?AcF!|LL''4(>?#LLab5!C&$vLFr:   )r   Mapping | Noner$   dict | Noner   zthreading.Lock)rR   T)r   Sequence[str]rs   r   r>   r   r   ztuple[str, ...]r   boolreturnNone)
rJ   
__module____qualname____doc____annotations__config_lockr   r   r   r   rR   r:   r"   rp   rp   u  s    !F LLL #"*	@@ @ 	@0** !#)G)G )G 	)G
 )G )G 
)Gr:   rp   c                j    |t         j                  }g t        |       t        |      }t	        | S )a  
    Collect configuration from paths and environment variables

    Parameters
    ----------
    paths : list[str]
        A list of paths to search for yaml config files

    env : Mapping[str, str]
        The system environment variables

    Returns
    -------
    config: dict

    See Also
    --------
    dask.config.refresh: collect configuration and update into primary config
    )r!   )rq   )r   r   rT   ru   r?   )r!   rq   configss      r"   collectr     s5    ( {jj@5)@;3+?@G'?r:   c                    | t         } | j                          |D ]  }t        | |d        t        | t        di |       t	        t
        |        y)aF  
    Update configuration by re-reading yaml files and env variables

    This mutates the global dask.config.config, or the config parameter if
    passed in.

    This goes through the following stages:

    1.  Clearing out all old configuration
    2.  Updating from the stored defaults from downstream libraries
        (see update_defaults)
    3.  Updating from yaml files and environment variables
    4.  Automatically renaming deprecated keys (with a warning)

    Note that some functionality only checks configuration once at startup and
    may not change behavior, even if configuration changes.  It is recommended
    to restart your python process if convenient to ensure that new
    configuration changes take place.

    See Also
    --------
    dask.config.collect: for parameters
    dask.config.update_defaults
    Nr8   )r1   rR   )r   clearr6   r   r   deprecations)r$   r&   r   r>   s       r"   refreshr     sK    6 ~
LLNvq5)  67$V$%
< r:   c                    ||S |t         }| j                  d      }|}|D ]  }t        ||      }	 ||   } |S # t        t        t
        f$ r |t        u r |cY c S w xY w)a  
    Get elements from global config

    If ``override_with`` is not None this value will be passed straight back.
    Useful for getting kwarg defaults from Dask config.

    Use '.' for nested access

    Examples
    --------
    >>> from dask import config
    >>> config.get('foo')  # doctest: +SKIP
    {'x': 1, 'y': 2}

    >>> config.get('foo.x')  # doctest: +SKIP
    1

    >>> config.get('foo.x.y', default=123)  # doctest: +SKIP
    123

    >>> config.get('foo.y', override_with=None)  # doctest: +SKIP
    2

    >>> config.get('foo.y', override_with=3)  # doctest: +SKIP
    3

    See Also
    --------
    dask.config.set
    rk   )r   r   r.   r*   
IndexErrorr   r
   )r   defaultr$   override_withr   r=   r,   s          r"   r7   r7   6  s    H  ~99S>DF1f%	AYF  M :x0 	*$N	s   ;AAc                
   | j                  d      }|}t        |      D ];  \  }}t        ||      }	 |t        |      dz
  k(  r|j	                  |      c S ||   }= y# t
        t        t        f$ r |t        u r |cY c S w xY w)zuLike ``get``, but remove the element if found

    See Also
    --------
    dask.config.get
    dask.config.set
    rk   rX   N)	r   	enumerater.   r   r   r*   r   r   r
   )r   r   r$   r   r=   ir,   s          r"   r   r   n  s     99S>DF$11f%	CIM!zz!}$   :x0 	*$N	s   !AABBc                T    t        | }|j                  |        t        || d|       y)am  Add a new set of defaults to the configuration

    It does two things:

    1.  Add the defaults to a global collection to be used by refresh later
    2.  Updates the global config with the new configuration.
        Old values are prioritized over new ones, unless the current value
        is the old default, in which case it's updated to the new default.
    r3   r0   N)r?   r   r6   )r2   r$   r&   current_defaultss       r"   update_defaultsr     s*     h'OOC
63:JKr:   c                d   t        | t              r-| j                         D ci c]  \  }}|t        |       c}}S t        | t              rt
        j                  j                  |       S t        | t        t        t        j                  f      r t        |       d | D              S | S c c}}w )a  Expand environment variables in a nested config dictionary

    This function will recursively search through any nested dictionaries
    and/or lists.

    Parameters
    ----------
    config : dict, iterable, or str
        Input object to search for environment variables

    Returns
    -------
    config : same type as input

    Examples
    --------
    >>> expand_environment_variables({'x': [1, 2, '$USER']})  # doctest: +SKIP
    {'x': [1, 2, 'my-username']}
    c              3  2   K   | ]  }t        |        y wrQ   )expand_environment_variables)r[   r9   s     r"   r]   z/expand_environment_variables.<locals>.<genexpr>  s     LV8;Vs   )r5   r   r4   r   strr   r   
expandvarsr   tuplebuiltinsrp   rI   )r$   r,   r9   s      r"   r   r     s    ( &'"?E||~N~tq!/22~NN	FC	 ww!!&))	FT5(,,7	8tF|LVLLL Os   B,zfuse-ave-widthzoptimization.fuse.ave-widthzfuse-max-heightzoptimization.fuse.max-heightzfuse-max-widthzoptimization.fuse.max-widthzfuse-subgraphszoptimization.fuse.subgraphszfuse-rename-keyszoptimization.fuse.rename-keyszfuse-max-depth-new-edgesz%optimization.fuse.max-depth-new-edgeszucx.cuda-copyzdistributed.ucx.cuda_copyzucx.tcpzdistributed.ucx.tcpz
ucx.nvlinkzdistributed.ucx.nvlinkzucx.infinibandzdistributed.ucx.infinibandz
ucx.rdmacmzdistributed.ucx.rdmacmzucx.net-deviceszdistributed.ucx.net-deviceszucx.reuse-endpointszdistributed.ucx.reuse-endpointszrmm.pool-sizezdistributed.rmm.pool-sizeshufflezdataframe.shuffle.algorithmzarray.rechunk-thresholdzarray.rechunk.thresholdzdataframe.shuffle.methodzdataframe.shuffle.compressionzadmin.traceback.shortenzarray.chunk-size-tolerance)zdataframe.shuffle-compressionzadmin.traceback.shorten.whatz!array.shuffle.chunksize-tolerancezdict[str, str | None]r   c                    | D ];  }	 t        ||      }t	        ||      }t        ||       }|s-t        ||i|       = y# t        t        t        f$ r Y Uw xY w)zRename old keys to new keys

    This helps migrate older configuration versions over time

    See Also
    --------
    check_deprecations
    rl   N)r   r*   r   r   r.   r   rp   )r   r$   r   rs   r2   s        r"   r   r     se     	F+E S0 l3eV,  :x0 		s   AAAc                    | j                  dd      }||v r9||   }|r#t        j                  d| d|dt               |S t	        d| d      | S )a  Check if the provided value has been renamed or removed

    Parameters
    ----------
    key : str
        The configuration key to check
    deprecations : Dict[str, str]
        The mapping of aliases

    Examples
    --------
    >>> deprecations = {"old_key": "new_key", "invalid": None}
    >>> check_deprecations("old_key", deprecations=deprecations)  # doctest: +SKIP
    FutureWarning: Dask configuration key 'old_key' has been deprecated; please use "new_key" instead

    >>> check_deprecations("invalid", deprecations=deprecations)
    Traceback (most recent call last):
        ...
    ValueError: Dask configuration key 'invalid' has been removed

    >>> check_deprecations("another_key", deprecations=deprecations)
    'another_key'

    Returns
    -------
    new: str
        The proper key, whether the original (if no deprecation) or the aliased
        value

    See Also
    --------
    rename
    r(   r)   zDask configuration key z! has been deprecated; please use rA   z has been removed)r+   warningswarnFutureWarningrH   )r   r   r8   r2   s       r"   r   r     ss    H ++c3
C
l3MM)# 1!WH.
 J6sg=NOPP
r:   c                    t        j                  t        j                  |       j	                               j                         S )aF  Serialize config data into a string.

    Typically used to pass config via the ``DASK_INTERNAL_INHERIT_CONFIG`` environment variable.

    Parameters
    ----------
    data: json-serializable object
        The data to serialize

    Returns
    -------
    serialized_data: str
        The serialized data as a string

    )base64urlsafe_b64encodejsondumpsencodedecodedatas    r"   	serializer      s0      ##DJJt$4$;$;$=>EEGGr:   c                    t        j                  t        j                  | j	                               j                               S )aW  De-serialize config data into the original object.

    Typically when receiving config via the ``DASK_INTERNAL_INHERIT_CONFIG`` environment variable.

    Parameters
    ----------
    data: str
        String serialized by :func:`dask.config.serialize`

    Returns
    -------
    deserialized_data: obj
        The de-serialized data

    )r   loadsr   urlsafe_b64decoder   r   r   s    r"   rm   rm   3  s-      ::f..t{{}=DDFGGr:   c                    t         j                  j                  t         j                  j                  t              d      } t        |       5 }t        j                  |      }d d d        t               y # 1 sw Y   xY w)Nz	dask.yaml)	r   r   r   dirname__file__rB   rC   rD   r   )fnrK   	_defaultss      r"   _initializer   F  sQ    	bggooh/	=B	bQNN1%	 
 I 
s   A77B )r,   r   r$   r   r   r   )r2   N)
r8   r   r2   r   r1   z%Literal['old', 'new', 'new-defaults']r&   r   r   r   )r<   r   r   r   )r   r   r   r   )r!   r   rO   zLiteral[False]r   zIterator[dict])r!   r   rO   zLiteral[True]r   z#Iterator[tuple[pathlib.Path, dict]])r!   r   rO   r   r   z*Iterator[dict | tuple[pathlib.Path, dict]]rQ   )rq   Mapping[str, str] | Noner   r   )rs   r   r   r   )r   r   r!   r   r   zIterator[pathlib.Path])NT)r   r   r   z
str | Noner   r   r   r   )r!   z	list[str]rq   r   r   r   )r$   r   r&   r%   r   r   )
r   r   r   r   r$   r   r   r   r   r   )r   r   r   r   r$   r   r   r   )r2   r   r$   r   r&   r%   r   r   )r$   r   r   r   )r   Mapping[str, str | None]r$   r   r   r   )r   r   r   r   r   r   )r   r   r   r   )r   r   r   r   )r   r   ):
__future__r   r{   r   r   r   r   rc   r   r   	threadingr   collections.abcr   r   r   typingr   r   r	   rC   dask.typingr
   r#   r!   r   r   r   r   r   r$   r   r   Lockr   r&   r.   r6   r?   rM   rT   ru   ro   r   r   rp   r   r   r7   r   r   r   r   r   r   r   rm   r   rR   r:   r"   <module>r      s   " 
    	   
   7 7 ) )  "* 	BJJ::m$D77<<**3/FCD   inn - 4 7<#	D	D	D 4D 	D
 
DN,, 
<A+9 

 
..+8.(. 
. 38##+/#/#LB3 !)	)) )& BF<<(<:><	<~|G |G~  %d 8 ($!$!*7$!	$!R 	5	55 5 	5
 	5p ",F 0 "(8L	LL3@L	L"N'3'5' 3' 3	'
 7'  G' 0' $' *' 2' *' 4' <' 0'  ,!'" 8#'$ "#=%'& &E$=)E+'# 4 .:&-*-CG-	-. 8D1	1411hH&H& 	 r:   