
    wg8m                        d Z ddlmZ ddlZddlmZmZmZ ddl	m
Z
 g dZ ej                  d      dd	       Zd
 Z ej                  d      	 dd       Zd Zd Z ej                  d      dd       Zej                  d        Z e
d      ej                  d               Z e
d      ej                  d               Zy)zGroup centrality measures.    )deepcopyN)_accumulate_endpoints"_single_source_dijkstra_path_basic"_single_source_shortest_path_basic)not_implemented_for)group_betweenness_centralitygroup_closeness_centralitygroup_degree_centralitygroup_in_degree_centralitygroup_out_degree_centralityprominent_groupweight)
edge_attrsc           	           g }d}t         fd|D              r|g}d}|D ch c]  }|D ]  }|  }	}}|	 j                  z
  r&t        j                  d|	 j                  z
   d      t	         |	|      \  }
}}|D ]~  }t        |      }d}t        |      }t        |
      }t        |      }t        |      }|D ]W  }|||   |   z  }|D ];  }|D ]2  }d}d}d}||   |   dk(  s||   |   dk(  s||   |   dk(  s||   |   ||   |   ||   |   z   k(  r||   |   ||   |   z  ||   |   z  }||   |   ||   |   ||   |   z   k(  r||   |   ||   |   z  ||   |   z  }||   |   ||   |   ||   |   z   k(  r||   |   ||   |   z  ||   |   z  }||   |   d|z
  z  ||   |<   ||   |   ||   |   |z  z
  ||   |<   ||k7  r||   |xx   ||   |   |z  z  cc<   ||k7  s||   |xx   ||   |   |z  z  cc<   5 > ||}}||}}Z t               t        |      }}|sd}t        j                         r$t        j                         r2|d|z  |z
  dz
  z  }n#t        j                         r|d|z  |z
  dz
  z  }|dk(  r&|D ]!  }||   D ]  }||k7  s	||v r|dz  }|dz  } # ||z  }|rd||z
  ||z
  dz
  z  z  }||z  }n j                         s|dz  }|j                  |        |r|S |d   S c c}}w )	u{  Compute the group betweenness centrality for a group of nodes.

    Group betweenness centrality of a group of nodes $C$ is the sum of the
    fraction of all-pairs shortest paths that pass through any vertex in $C$

    .. math::

       c_B(v) =\sum_{s,t \in V} \frac{\sigma(s, t|v)}{\sigma(s, t)}

    where $V$ is the set of nodes, $\sigma(s, t)$ is the number of
    shortest $(s, t)$-paths, and $\sigma(s, t|C)$ is the number of
    those paths passing through some node in group $C$. Note that
    $(s, t)$ are not members of the group ($V-C$ is the set of nodes
    in $V$ that are not in $C$).

    Parameters
    ----------
    G : graph
      A NetworkX graph.

    C : list or set or list of lists or list of sets
      A group or a list of groups containing nodes which belong to G, for which group betweenness
      centrality is to be calculated.

    normalized : bool, optional (default=True)
      If True, group betweenness is normalized by `1/((|V|-|C|)(|V|-|C|-1))`
      where `|V|` is the number of nodes in G and `|C|` is the number of nodes in C.

    weight : None or string, optional (default=None)
      If None, all edge weights are considered equal.
      Otherwise holds the name of the edge attribute used as weight.
      The weight of an edge is treated as the length or distance between the two sides.

    endpoints : bool, optional (default=False)
      If True include the endpoints in the shortest path counts.

    Raises
    ------
    NodeNotFound
       If node(s) in C are not present in G.

    Returns
    -------
    betweenness : list of floats or float
       If C is a single group then return a float. If C is a list with
       several groups then return a list of group betweenness centralities.

    See Also
    --------
    betweenness_centrality

    Notes
    -----
    Group betweenness centrality is described in [1]_ and its importance discussed in [3]_.
    The initial implementation of the algorithm is mentioned in [2]_. This function uses
    an improved algorithm presented in [4]_.

    The number of nodes in the group must be a maximum of n - 2 where `n`
    is the total number of nodes in the graph.

    For weighted graphs the edge weights must be greater than zero.
    Zero edge weights can produce an infinite number of equal length
    paths between pairs of nodes.

    The total number of paths between source and target is counted
    differently for directed and undirected graphs. Directed paths
    between "u" and "v" are counted as two possible paths (one each
    direction) while undirected paths between "u" and "v" are counted
    as one path. Said another way, the sum in the expression above is
    over all ``s != t`` for directed graphs and for ``s < t`` for undirected graphs.


    References
    ----------
    .. [1] M G Everett and S P Borgatti:
       The Centrality of Groups and Classes.
       Journal of Mathematical Sociology. 23(3): 181-201. 1999.
       http://www.analytictech.com/borgatti/group_centrality.htm
    .. [2] Ulrik Brandes:
       On Variants of Shortest-Path Betweenness
       Centrality and their Generic Computation.
       Social Networks 30(2):136-145, 2008.
       http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.9610&rep=rep1&type=pdf
    .. [3] Sourav Medya et. al.:
       Group Centrality Maximization via Network Design.
       SIAM International Conference on Data Mining, SDM 2018, 126–134.
       https://sites.cs.ucsb.edu/~arlei/pubs/sdm18.pdf
    .. [4] Rami Puzis, Yuval Elovici, and Shlomi Dolev.
       "Fast algorithm for successive computation of group betweenness centrality."
       https://journals.aps.org/pre/pdf/10.1103/PhysRevE.76.056709

    Tc              3   &   K   | ]  }|v  
 y wN ).0elGs     i/home/mcse/projects/flask/flask-venv/lib/python3.12/site-packages/networkx/algorithms/centrality/group.py	<genexpr>z/group_betweenness_centrality.<locals>.<genexpr>x   s     
r27
s   FThe node(s)  are in C but not in G.r         )anynodesnxNodeNotFound_group_preprocessingsetr   lenis_directedis_strongly_connectedis_connectedappend)r   C
normalizedr   	endpointsGBClist_of_groupsgroupnodeset_vPBsigmaD	GBC_groupsigma_mPB_m	sigma_m_vPB_m_vvxydxvydxyvdvxycscalegroup_node1s   `                          r   r   r      s   | CN

Q
C 3eU3TT3T3E3qwwooUQWW_,==TUVV (5&9LBq  @E
	5/|W%	$ 	(Aa#I : :ADDD
1*gajmq.@GAJqMUVDVQ47ad1g!Q&77#*1:a=71:a=#@71:a=#PDQ47ad1g!Q&77#*1:a=71:a=#@71:a=#PDQ47ad1g!Q&77#*1:a=58A;#>q!#LD&-ajmq4x&@IaLO#'71:Q
T0A#AF1IaLAvq	!Q
T(99Avq	!Q
T(99%::( "+GYG!4&D/	(4 1vs5z1E ~~a ++A.QQ/E#QUQY]+z#( +K !+ +;.#u} %
 %
++ I !a%AEAI./EI NI

9A@B 
q6MW 4s   L
c           	         i }i }i }t         j                  | d      }| D ]  }|t        | |      \  }}	||<   ||<   nt        | ||      \  }}	||<   ||<   t	        |||	||   |      \  }||<   ||   D ]+  }
||
k7  r||   |
xx   dz  cc<   |||   |
   dz  ||   |
<   -  t         j                  |       }|D ]  }t         j                  | d      ||<   |D ]m  }|||   vr| D ]^  }|||   v s|||   v s||   |   ||   |   ||   |   z   k(  s.||   |xx   ||   |   ||   |   z  ||   |   z  ||   |   z  z  cc<   ` o  |||fS )Nr   r   r   g        )dictfromkeysr   r   r   )r   r/   r   r1   deltar2   betweennesssSPir0   r@   group_node2r.   s                  r   r!   r!      s   EE
A--1%K 
.>#Ea#K Aq%(AaD#EaF#S Aq%(AaD 5k1aqST UU1Xq 	.AAvaq !#AhqkAoa		.
. 
q	B --3/;  	K!K.0 !D')kQtW.D$,T7;/!K.2MMN ;4!$K4#Dk+67#K0=> $Dk+674	$ ua<    c                 |   ddl }ddl}|Yt        |      }|| j                  z
  r&t	        j
                  d|| j                  z
   d      t        | j                  |z
        }	nt        | j                        }	t	        j                         }
d|
_        t        | |	|      \  }}}|j                  j                  |      }|-|D ](  }|j                  |d       |j                  |d       * t        t        |j                  |      |	      d      D cg c]  \  }}|	 }}}d}g }|
j!                  d	||dg |t#        t        |	|j                  |                  
       d|
j                  d	   d<   t%        |      D ]B  }|
j                  d	   dxx   |
j                  d	   d   |
j                  d	   d   |      z  cc<   D t'        | ||
|d	|||	|	      \  }}
}t)        |       }|sd}t	        j*                  |       r$t	        j,                  |       r2|d|z  |z
  d	z
  z  }n#t	        j.                  |       r|d|z  |z
  d	z
  z  }|dk(  r&|D ]!  }||   D ]  }||k7  s	||v r|d	z  }|dz  } # ||z  }|rd	||z
  ||z
  d	z
  z  z  }||z  }n| j+                         s|dz  }t1        |d      }||fS c c}}w )ua  Find the prominent group of size $k$ in graph $G$. The prominence of the
    group is evaluated by the group betweenness centrality.

    Group betweenness centrality of a group of nodes $C$ is the sum of the
    fraction of all-pairs shortest paths that pass through any vertex in $C$

    .. math::

       c_B(v) =\sum_{s,t \in V} \frac{\sigma(s, t|v)}{\sigma(s, t)}

    where $V$ is the set of nodes, $\sigma(s, t)$ is the number of
    shortest $(s, t)$-paths, and $\sigma(s, t|C)$ is the number of
    those paths passing through some node in group $C$. Note that
    $(s, t)$ are not members of the group ($V-C$ is the set of nodes
    in $V$ that are not in $C$).

    Parameters
    ----------
    G : graph
       A NetworkX graph.

    k : int
       The number of nodes in the group.

    normalized : bool, optional (default=True)
       If True, group betweenness is normalized by ``1/((|V|-|C|)(|V|-|C|-1))``
       where ``|V|`` is the number of nodes in G and ``|C|`` is the number of
       nodes in C.

    weight : None or string, optional (default=None)
       If None, all edge weights are considered equal.
       Otherwise holds the name of the edge attribute used as weight.
       The weight of an edge is treated as the length or distance between the two sides.

    endpoints : bool, optional (default=False)
       If True include the endpoints in the shortest path counts.

    C : list or set, optional (default=None)
       list of nodes which won't be candidates of the prominent group.

    greedy : bool, optional (default=False)
       Using a naive greedy algorithm in order to find non-optimal prominent
       group. For scale free networks the results are negligibly below the optimal
       results.

    Raises
    ------
    NodeNotFound
       If node(s) in C are not present in G.

    Returns
    -------
    max_GBC : float
       The group betweenness centrality of the prominent group.

    max_group : list
        The list of nodes in the prominent group.

    See Also
    --------
    betweenness_centrality, group_betweenness_centrality

    Notes
    -----
    Group betweenness centrality is described in [1]_ and its importance discussed in [3]_.
    The algorithm is described in [2]_ and is based on techniques mentioned in [4]_.

    The number of nodes in the group must be a maximum of ``n - 2`` where ``n``
    is the total number of nodes in the graph.

    For weighted graphs the edge weights must be greater than zero.
    Zero edge weights can produce an infinite number of equal length
    paths between pairs of nodes.

    The total number of paths between source and target is counted
    differently for directed and undirected graphs. Directed paths
    between "u" and "v" are counted as two possible paths (one each
    direction) while undirected paths between "u" and "v" are counted
    as one path. Said another way, the sum in the expression above is
    over all ``s != t`` for directed graphs and for ``s < t`` for undirected graphs.

    References
    ----------
    .. [1] M G Everett and S P Borgatti:
       The Centrality of Groups and Classes.
       Journal of Mathematical Sociology. 23(3): 181-201. 1999.
       http://www.analytictech.com/borgatti/group_centrality.htm
    .. [2] Rami Puzis, Yuval Elovici, and Shlomi Dolev:
       "Finding the Most Prominent Group in Complex Networks"
       AI communications 20(4): 287-296, 2007.
       https://www.researchgate.net/profile/Rami_Puzis2/publication/220308855
    .. [3] Sourav Medya et. al.:
       Group Centrality Maximization via Network Design.
       SIAM International Conference on Data Mining, SDM 2018, 126–134.
       https://sites.cs.ucsb.edu/~arlei/pubs/sdm18.pdf
    .. [4] Rami Puzis, Yuval Elovici, and Shlomi Dolev.
       "Fast algorithm for successive computation of group betweenness centrality."
       https://journals.aps.org/pre/pdf/10.1103/PhysRevE.76.056709
    r   Nr   r   T)indexinplace)columnsrN   reverser   )CLrE   r+   GMr1   contheurT   rR   r   z.2f)numpypandasr"   r   r   r    listGraph__networkx_cache__r!   	DataFrame	from_dictdropsortedzipdiagadd_noderB   range_dfbnbr#   r$   r%   r&   float)r   kr   r(   r*   r)   greedynppdr   DF_treer0   r1   r2   rE   r.   _rR   max_GBC	max_grouprI   r8   r?   r@   s                           r   r   r      s   N }Fqww;//LQWW=T"UVVQWWq[!QWWhhjG!%G'5&9LBq,,((,K} 	9D46T48	9 %S)=u%EtT	U71d$	UB	UGI	#eRWW[123    GMM!U1X Wa7==#3F#;GMM!<LT<RST<U#VVW"(	1gw1i#GWi 	AA >>!''*QUQY]+__QQQ'EA:( 'kN 'D{*9,!QJE!QJE'' 	5 a!eA	*+5 ]]_1wsm%GIg 
Vs   J8c	                 r   t        |j                  |   d         |k(  r:|j                  |   d   |kD  r%|j                  |   d   ||j                  |   d   fS t        |j                  |   d         |k(  sbt        |j                  |   d         |t        |j                  |   d         z
  k  s(|j                  |   d   |j                  |   d   z   |k  r|||fS t        ||||||      \  }	}
}|rt        | ||||	||||	      \  }}}n|j                  |	   d   |j                  |	   d   z   |j                  |
   d   |j                  |
   d   z   kD  r/t        | ||||	||||	      \  }}}t        | ||||
||||	      \  }}}n.t        | ||||
||||	      \  }}}t        | ||||	||||	      \  }}}|||fS )NrS   r+   rR   rU   )r#   r   
_heuristicrc   )r   re   ri   rk   rootr2   rl   r   rf   node_pnode_ms              r   rc   rc     s   
7==t$%*w}}T/B5/IG/S}}T"5)7GMM$4G4MMM
 	GMM$%&!+w}}T"4()QW]]45H5N1O-OO==u%d(;E(BBgM** )D'1eVLFFG &,q'7FAy%'
#)
 	fe$w}}V'<U'CC
--

&v)>u)E
E	F '-q'7FAy%'
#) '-q'7FAy%'
#) '-q'7FAy%'
#) '-q'7FAy%'
#) GY&&rK   c           	      ~	   dd l }|j                         dz   }|j                         dz   }|j                  |   d   d   }	|j                  |t	        |j                  |         fg       |j                  |   d   j                  |	       |j                  |   dxx   |j                  |   d   |	   z  cc<   |j                  |   }
|D ]  }|D ]  }d}d}d}|
d   |   |   dk(  s|
d   |   |	   dk(  s|
d   |	   |   dk(  s||   |	   ||   |   ||   |	   z   k(  r#|
d   |   |   |
d   |   |	   z  |
d   |   |	   z  }||   |   ||   |	   ||	   |   z   k(  r#|
d   |   |	   |
d   |	   |   z  |
d   |   |   z  }||	   |   ||	   |   ||   |   z   k(  r#|
d   |	   |   |
d   |   |   z  |
d   |	   |   z  }|
d   |   |   d|z
  z  |j                  |   d   |   |<   |
d	   |   |   |
d	   |   |   |z  z
  |j                  |   d	   j                  ||f<   ||	k7  r5|j                  |   d	   j                  ||fxx   |
d	   |   |	   |z  z  cc<   ||	k7  s|j                  |   d	   j                  ||fxx   |
d	   |	   |   |z  z  cc<     t        t        |j                  |j                  |   d	         |      d
      D cg c]  \  }}||j                  |   d   vr| c}}|j                  |   d<   t        t        ||j                  |j                  |   d	                     |j                  |   d<   d|j                  |   d<   t        | t        |j                  |   d         z
        D ]B  }|j                  |   dxx   |j                  |   d   |j                  |   d   |      z  cc<   D |s|j                  |t	        |j                  |         fg       |j                  |   d   j                  d       |j                  |   d   j                  |	       d|j                  |   d<   t        | t        |j                  |   d         z
        D ]B  }|j                  |   dxx   |j                  |   d   |j                  |   d   |      z  cc<   D nd }|||fS c c}}w )Nr   r   r   rR   rS   r+   rT   r1   rE   TrP   rU   )rV   number_of_nodesr   add_nodes_fromr   r'   locr^   r_   r`   rB   rb   r#   pop)re   ro   ri   r2   r   rf   rg   rp   rq   
added_node	root_noder9   r:   r;   r<   r=   rj   r.   rI   s                      r   rn   rn     s    $$&*F$$&*Ft$T*1-J VXgmmD.A%BCDEMM&$&&z2MM&% GMM&$9&$A*$MM d#I ' &	ADDD'"1%a(A-W%a(49W%j1!49Q4
#qtAw1j1A'AA!'*1-a0#G,Q/
;<#G,Q/
;< 
 Q47ad:.:q1AAA!'*1-j9#G,Z8;<#G,Q/23 
 Z=#q}Q'7!A$q''AA!'*:6q9#G,Q/23#G,Z8;< 
 4=W3Ea3H3KqSWx3XGMM&!'*1-a0-(+A.=1I!1LQ1ORV1VV MM&!-044QT: Jf%m488A>m,Q/
;dB> Jf%m488A>m,Z8;dB>I&	'V f-m<=uEt
#At w}}V,T22	 	#GMM&$ %)E2777==0?@A%GMM&&! $%GMM&% 1s7==06778 
fe$f(=f(EMM&!$'*)
 	
$
 '--2E)F GHIfd#''*ff%))*5'(fe$q3w}}V4T:;;< 	AMM&!%(GMM&,A&,If%d+A.- (	
 67""=#s    R9c                 :   | j                         r| j                         } d}t        |       }t        |      }||z
  }t        j                  | ||      }|D ]  }	 |||   z  } 	 t        |      |z  }|S # t
        $ r |dz  }Y /w xY w# t        $ r d}Y |S w xY w)aB	  Compute the group closeness centrality for a group of nodes.

    Group closeness centrality of a group of nodes $S$ is a measure
    of how close the group is to the other nodes in the graph.

    .. math::

       c_{close}(S) = \frac{|V-S|}{\sum_{v \in V-S} d_{S, v}}

       d_{S, v} = min_{u \in S} (d_{u, v})

    where $V$ is the set of nodes, $d_{S, v}$ is the distance of
    the group $S$ from $v$ defined as above. ($V-S$ is the set of nodes
    in $V$ that are not in $S$).

    Parameters
    ----------
    G : graph
       A NetworkX graph.

    S : list or set
       S is a group of nodes which belong to G, for which group closeness
       centrality is to be calculated.

    weight : None or string, optional (default=None)
       If None, all edge weights are considered equal.
       Otherwise holds the name of the edge attribute used as weight.
       The weight of an edge is treated as the length or distance between the two sides.

    Raises
    ------
    NodeNotFound
       If node(s) in S are not present in G.

    Returns
    -------
    closeness : float
       Group closeness centrality of the group S.

    See Also
    --------
    closeness_centrality

    Notes
    -----
    The measure was introduced in [1]_.
    The formula implemented here is described in [2]_.

    Higher values of closeness indicate greater centrality.

    It is assumed that 1 / 0 is 0 (required in the case of directed graphs,
    or when a shortest path length is 0).

    The number of nodes in the group must be a maximum of n - 1 where `n`
    is the total number of nodes in the graph.

    For directed graphs, the incoming distance is utilized here. To use the
    outward distance, act on `G.reverse()`.

    For weighted graphs the edge weights must be greater than zero.
    Zero edge weights can produce an infinite number of equal length
    paths between pairs of nodes.

    References
    ----------
    .. [1] M G Everett and S P Borgatti:
       The Centrality of Groups and Classes.
       Journal of Mathematical Sociology. 23(3): 181-201. 1999.
       http://www.analytictech.com/borgatti/group_centrality.htm
    .. [2] J. Zhao et. al.:
       Measuring and Maximizing Group Closeness Centrality over
       Disk Resident Graphs.
       WWWConference Proceedings, 2014. 689-694.
       https://doi.org/10.1145/2567948.2579356
    r   )r   )r$   rQ   r"   r   !multi_source_dijkstra_path_lengthKeyErrorr#   ZeroDivisionError)r   rG   r   	closenessVV_Sshortest_path_lengthsr8   s           r   r	   r	   $  s    Z 	}}IIKIAAAA
a%C@@AfU 	.q11I
Hy(	   	NI	  	s$   A7'B 7BBBBc                    t         t               j                  |D cg c]  }t        | j                  |             c} t        |      z
        }|t        | j	                               t        |      z
  z  }|S c c}w )aK  Compute the group degree centrality for a group of nodes.

    Group degree centrality of a group of nodes $S$ is the fraction
    of non-group members connected to group members.

    Parameters
    ----------
    G : graph
       A NetworkX graph.

    S : list or set
       S is a group of nodes which belong to G, for which group degree
       centrality is to be calculated.

    Raises
    ------
    NetworkXError
       If node(s) in S are not in G.

    Returns
    -------
    centrality : float
       Group degree centrality of the group S.

    See Also
    --------
    degree_centrality
    group_in_degree_centrality
    group_out_degree_centrality

    Notes
    -----
    The measure was introduced in [1]_.

    The number of nodes in the group must be a maximum of n - 1 where `n`
    is the total number of nodes in the graph.

    References
    ----------
    .. [1] M G Everett and S P Borgatti:
       The Centrality of Groups and Classes.
       Journal of Mathematical Sociology. 23(3): 181-201. 1999.
       http://www.analytictech.com/borgatti/group_centrality.htm
    )r#   r"   union	neighborsr   )r   rG   rI   
centralitys       r   r
   r
     sf    \ [SU[["B13q{{1~#6"BCc!fLMJ#aggi.3q6))J #Cs   !A=
undirectedc                 6    t        | j                         |      S )a  Compute the group in-degree centrality for a group of nodes.

    Group in-degree centrality of a group of nodes $S$ is the fraction
    of non-group members connected to group members by incoming edges.

    Parameters
    ----------
    G : graph
       A NetworkX graph.

    S : list or set
       S is a group of nodes which belong to G, for which group in-degree
       centrality is to be calculated.

    Returns
    -------
    centrality : float
       Group in-degree centrality of the group S.

    Raises
    ------
    NetworkXNotImplemented
       If G is undirected.

    NodeNotFound
       If node(s) in S are not in G.

    See Also
    --------
    degree_centrality
    group_degree_centrality
    group_out_degree_centrality

    Notes
    -----
    The number of nodes in the group must be a maximum of n - 1 where `n`
    is the total number of nodes in the graph.

    `G.neighbors(i)` gives nodes with an outward edge from i, in a DiGraph,
    so for group in-degree centrality, the reverse graph is used.
    )r
   rQ   r   rG   s     r   r   r     s    X #199;22rK   c                     t        | |      S )a  Compute the group out-degree centrality for a group of nodes.

    Group out-degree centrality of a group of nodes $S$ is the fraction
    of non-group members connected to group members by outgoing edges.

    Parameters
    ----------
    G : graph
       A NetworkX graph.

    S : list or set
       S is a group of nodes which belong to G, for which group in-degree
       centrality is to be calculated.

    Returns
    -------
    centrality : float
       Group out-degree centrality of the group S.

    Raises
    ------
    NetworkXNotImplemented
       If G is undirected.

    NodeNotFound
       If node(s) in S are not in G.

    See Also
    --------
    degree_centrality
    group_degree_centrality
    group_in_degree_centrality

    Notes
    -----
    The number of nodes in the group must be a maximum of n - 1 where `n`
    is the total number of nodes in the graph.

    `G.neighbors(i)` gives nodes with an outward edge from i, in a DiGraph,
    so for group out-degree centrality, the graph itself is used.
    )r
   r   s     r   r   r     s    X #1a((rK   )TNF)NNFTFr   )__doc__copyr   networkxr   *networkx.algorithms.centrality.betweennessr   r   r   networkx.utils.decoratorsr   __all___dispatchabler   r!   r   rc   rn   r	   r
   r   r   r   rK   r   <module>r      s       
 : X&n 'nb$N X&HMl 'l^)'XU#p X&] ']@ / /d \"*3  #*3Z \"*)  #*)rK   