
    Mh]n                    L   S r SSKJr  SSKJr  SSKJrJrJrJ	r	J
r
  SSKrSSKrSSKJr  SSKJr  SSKJr  SS	KJrJr  SS
KJr  SSKJrJr  SSKJr  SSKJrJ r   SSK!J"s  J#r$  SSK%J&r&J'r'J(r(J)r)J*r*J+r+J,r,  SSK-J.r.  \(       a  SSK/J0r0J1r1J2r2  SSK3J4r4J5r5J6r6  SSK7J8r8J9r9  \
SSSSSSSSSS.	                   S"S jj5       r:\
SSSSSSSSSS.	                   S#S jj5       r:\
SSSSSSSSSS.	                   S$S jj5       r:\
SSSSSSSSS.                   S%S jj5       r:\
SSSSSSSSSS.	                   S&S jj5       r:SSSSSSSSSS.	                   S&S jjr: " S S5      r;S'S  jr<S(S)S! jjr=g)*z
Concat routines.
    )annotations)abc)TYPE_CHECKINGCallableLiteralcastoverloadN)using_copy_on_write)cache_readonly)find_stack_level)is_boolis_iterator)concat_compat)ABCDataFrame	ABCSeries)isna)factorize_from_iterablefactorize_from_iterables)Index
MultiIndexall_indexes_samedefault_indexensure_indexget_objs_combined_axisget_unanimous_names)concatenate_managers)HashableIterableMapping)AxisAxisInt	HashableT)	DataFrameSeries.)	axisjoinignore_indexkeyslevelsnamesverify_integritysortcopyc       	            g N 
objsr%   r&   r'   r(   r)   r*   r+   r,   r-   s
             L/var/www/html/env/lib/python3.13/site-packages/pandas/core/reshape/concat.pyconcatr4   H            c       	            g r/   r0   r1   s
             r3   r4   r4   Y   r5   r6   c       	            g r/   r0   r1   s
             r3   r4   r4   j   r5   r6   )r&   r'   r(   r)   r*   r+   r,   r-   c       	            g r/   r0   r1   s
             r3   r4   r4   {   r5   r6   c       	            g r/   r0   r1   s
             r3   r4   r4      r5   r6   outerFc       	            U	c  [        5       (       a  Sn	OSn	OU	(       a  [        5       (       a  Sn	[        U UUUUUUUU	US9
n
U
R                  5       $ )a  
Concatenate pandas objects along a particular axis.

Allows optional set logic along the other axes.

Can also add a layer of hierarchical indexing on the concatenation axis,
which may be useful if the labels are the same (or overlapping) on
the passed axis number.

Parameters
----------
objs : a sequence or mapping of Series or DataFrame objects
    If a mapping is passed, the sorted keys will be used as the `keys`
    argument, unless it is passed, in which case the values will be
    selected (see below). Any None objects will be dropped silently unless
    they are all None in which case a ValueError will be raised.
axis : {0/'index', 1/'columns'}, default 0
    The axis to concatenate along.
join : {'inner', 'outer'}, default 'outer'
    How to handle indexes on other axis (or axes).
ignore_index : bool, default False
    If True, do not use the index values along the concatenation axis. The
    resulting axis will be labeled 0, ..., n - 1. This is useful if you are
    concatenating objects where the concatenation axis does not have
    meaningful indexing information. Note the index values on the other
    axes are still respected in the join.
keys : sequence, default None
    If multiple levels passed, should contain tuples. Construct
    hierarchical index using the passed keys as the outermost level.
levels : list of sequences, default None
    Specific levels (unique values) to use for constructing a
    MultiIndex. Otherwise they will be inferred from the keys.
names : list, default None
    Names for the levels in the resulting hierarchical index.
verify_integrity : bool, default False
    Check whether the new concatenated axis contains duplicates. This can
    be very expensive relative to the actual data concatenation.
sort : bool, default False
    Sort non-concatenation axis if it is not already aligned. One exception to
    this is when the non-concatentation axis is a DatetimeIndex and join='outer'
    and the axis is not already aligned. In that case, the non-concatenation
    axis is always sorted lexicographically.
copy : bool, default True
    If False, do not copy data unnecessarily.

Returns
-------
object, type of objs
    When concatenating all ``Series`` along the index (axis=0), a
    ``Series`` is returned. When ``objs`` contains at least one
    ``DataFrame``, a ``DataFrame`` is returned. When concatenating along
    the columns (axis=1), a ``DataFrame`` is returned.

See Also
--------
DataFrame.join : Join DataFrames using indexes.
DataFrame.merge : Merge DataFrames by indexes or columns.

Notes
-----
The keys, levels, and names arguments are all optional.

A walkthrough of how this method fits in with other tools for combining
pandas objects can be found `here
<https://pandas.pydata.org/pandas-docs/stable/user_guide/merging.html>`__.

It is not recommended to build DataFrames by adding single rows in a
for loop. Build a list of rows and make a DataFrame in a single concat.

Examples
--------
Combine two ``Series``.

>>> s1 = pd.Series(['a', 'b'])
>>> s2 = pd.Series(['c', 'd'])
>>> pd.concat([s1, s2])
0    a
1    b
0    c
1    d
dtype: object

Clear the existing index and reset it in the result
by setting the ``ignore_index`` option to ``True``.

>>> pd.concat([s1, s2], ignore_index=True)
0    a
1    b
2    c
3    d
dtype: object

Add a hierarchical index at the outermost level of
the data with the ``keys`` option.

>>> pd.concat([s1, s2], keys=['s1', 's2'])
s1  0    a
    1    b
s2  0    c
    1    d
dtype: object

Label the index keys you create with the ``names`` option.

>>> pd.concat([s1, s2], keys=['s1', 's2'],
...           names=['Series name', 'Row ID'])
Series name  Row ID
s1           0         a
             1         b
s2           0         c
             1         d
dtype: object

Combine two ``DataFrame`` objects with identical columns.

>>> df1 = pd.DataFrame([['a', 1], ['b', 2]],
...                    columns=['letter', 'number'])
>>> df1
  letter  number
0      a       1
1      b       2
>>> df2 = pd.DataFrame([['c', 3], ['d', 4]],
...                    columns=['letter', 'number'])
>>> df2
  letter  number
0      c       3
1      d       4
>>> pd.concat([df1, df2])
  letter  number
0      a       1
1      b       2
0      c       3
1      d       4

Combine ``DataFrame`` objects with overlapping columns
and return everything. Columns outside the intersection will
be filled with ``NaN`` values.

>>> df3 = pd.DataFrame([['c', 3, 'cat'], ['d', 4, 'dog']],
...                    columns=['letter', 'number', 'animal'])
>>> df3
  letter  number animal
0      c       3    cat
1      d       4    dog
>>> pd.concat([df1, df3], sort=False)
  letter  number animal
0      a       1    NaN
1      b       2    NaN
0      c       3    cat
1      d       4    dog

Combine ``DataFrame`` objects with overlapping columns
and return only those that are shared by passing ``inner`` to
the ``join`` keyword argument.

>>> pd.concat([df1, df3], join="inner")
  letter  number
0      a       1
1      b       2
0      c       3
1      d       4

Combine ``DataFrame`` objects horizontally along the x axis by
passing in ``axis=1``.

>>> df4 = pd.DataFrame([['bird', 'polly'], ['monkey', 'george']],
...                    columns=['animal', 'name'])
>>> pd.concat([df1, df4], axis=1)
  letter  number  animal    name
0      a       1    bird   polly
1      b       2  monkey  george

Prevent the result from including duplicate index values with the
``verify_integrity`` option.

>>> df5 = pd.DataFrame([1], index=['a'])
>>> df5
   0
a  1
>>> df6 = pd.DataFrame([2], index=['a'])
>>> df6
   0
a  2
>>> pd.concat([df5, df6], verify_integrity=True)
Traceback (most recent call last):
    ...
ValueError: Indexes have overlapping values: ['a']

Append a single row to the end of a ``DataFrame`` object.

>>> df7 = pd.DataFrame({'a': 1, 'b': 2}, index=[0])
>>> df7
    a   b
0   1   2
>>> new_row = pd.Series({'a': 3, 'b': 4})
>>> new_row
a    3
b    4
dtype: int64
>>> pd.concat([df7, new_row.to_frame().T], ignore_index=True)
    a   b
0   1   2
1   3   4
FT)	r%   r'   r&   r(   r)   r*   r+   r-   r,   )r
   _Concatenator
get_result)r2   r%   r&   r'   r(   r)   r*   r+   r,   r-   ops              r3   r4   r4      sd    r |  DD	%''	!)
B ==?r6   c                     \ rS rSr% SrS\S'            S                   SS jjrSS jr    SS jr      SS	 jr	          SS
 jr
S rSS jr\SS j5       rSS jr\SS j5       rSS jrSrg)r=   i  z:
Orchestrates a concatenation operation for BlockManagers
boolr,   Nc                z   [        U[        [        [        45      (       a"  [	        S[        U5      R                   S35      eUS:X  a  SU l        OUS:X  a  SU l        O[        S5      e[        U
5      (       d  [        SU
 S	35      eXl
        Xpl        Xl        Xl        U R                  X5      u  pU R                  U5      nU R!                  XXFU5      u  pUR"                  S
:X  a'  SSKJn  UR(                  " U5      nSU l        SU l        O0UR)                  U5      nSU l        SU l        UR/                  U5      n[1        U5      S
:  a  U R3                  XXr5      nXl        X l        U R*                  (       a  S
U R6                  -
  OSU l        X@l        U=(       d    [=        USS 5      U l        XPl         g )NzTfirst argument must be an iterable of pandas objects, you passed an object of type ""r;   FinnerTz?Only can inner (intersect) or outer (union) join the other axisz0The 'sort' keyword only accepts boolean values; z was passed.   r   )r#   r*   )!
isinstancer   r   str	TypeErrortype__name__	intersect
ValueErrorr   r,   r'   r+   r-   _clean_keys_and_objs
_get_ndims_get_sample_objectndimpandasr#   _get_axis_number	_is_frame
_is_series_get_block_manager_axislen_sanitize_mixed_ndimr2   bm_axisr%   r(   getattrr*   r)   )selfr2   r%   r&   r(   r)   r*   r'   r+   r-   r,   ndimssampler#   s                 r3   __init___Concatenator.__init__  s    dYc:;;::>t*:M:M9NaQ 
 7?"DNW_!DNQ  t}}B4&U 
 	( 0	..t:
 %..tDP ;;!(--d3D"DN"DO**40D!DN#DO 11$7D u:>,,T<ND	 (,A$A		:gdGT:
r6   c                    [        5       nU HS  n[        U[        [        45      (       d  S[	        U5       S3n[        U5      eUR                  UR                  5        MU     U$ )Nz#cannot concatenate object of type 'z+'; only Series and DataFrame objs are valid)setrF   r   r   rI   rH   addrP   )rZ   r2   r[   objmsgs        r3   rN   _Concatenator._get_ndims  sc    CcI|#<==9$s) E? ?   n$IIchh  r6   c           	     P   [        U[        R                  5      (       a1  Uc  [        UR	                  5       5      nU Vs/ s H  o1U   PM	     nnO[        U5      n[        U5      S:X  a  [        S5      eUc  [        [        R                  " U6 5      nO/ n/ n[        U5      (       a  [        U5      n[        U5      [        U5      :w  a"  [        R                  " S[        [        5       S9  [        X$5       H,  u  p7Uc  M
  UR                  U5        UR                  U5        M.     Un[        U[         5      (       a#  [#        U5      R%                  XRR&                  S9nO"[)        USS 5      n[+        XX[)        USS 5      S9n[        U5      S:X  a  [        S	5      eXB4$ s  snf )
Nr   zNo objects to concatenatezThe behavior of pd.concat with len(keys) != len(objs) is deprecated. In a future version this will raise instead of truncating to the smaller of the two sequences)
stacklevel)r*   namedtype)rg   rh   zAll objects passed were None)rF   r   r   listr(   rV   rL   comnot_noner   warningswarnFutureWarningr   zipappendr   rI   from_tuplesr*   rY   r   )	rZ   r2   r(   k	objs_list
clean_keys
clean_objsvrg   s	            r3   rM   "_Concatenator._clean_keys_and_objs  sx   
 dCKK((|DIIK(*./$Qa$I/IT
Iy>Q899<S\\956I JJ4  Dz4yC	N*E "/1 D,9!!!$!!!$	 -
 #I$
++Dz--j

-KtVT2Z'$QU:VWy>Q;<<S 0s    F#c                   S n[        U5      S:  aP  [        U5      nU H>  nUR                  U:X  d  M  [        R                  " UR
                  5      (       d  M<  Un  Oq   OnU Vs/ s H0  n[	        UR
                  5      S:  d  UR                  S:X  d  M.  UPM2     n	n[        U	5      (       a!  Uc  Uc  Uc  U R                  (       d  U	nUS   nUc  US   nXa4$ s  snf )NrE   r   )rV   maxrP   npsumshaperK   )
rZ   r2   r[   r(   r*   r)   r\   max_ndimrb   non_emptiess
             r3   rO    _Concatenator._get_sample_object!  s     -1u:>5zH88x'BFF399,=,= F  +/V$3#cii.12DTU3$KV;6>$.."a>!WF| Ws   &-CCc                   / nSnUR                   nU Hq  nUR                   n	X:X  a  OKXS-
  :w  a  [        S5      e[        USS 5      n
U(       d  U
c  US:X  a  Sn
OUn
US-  nUR                  X0SS9nUR	                  U5        Ms     U$ )Nr   rE   z>cannot concatenate unaligned mixed dimensional NDFrame objectsrg   F)r-   )rP   rL   rY   _constructorrp   )rZ   r2   r\   r'   r%   new_objscurrent_columnr}   rb   rP   rg   s              r3   rW   "_Concatenator._sanitize_mixed_ndimC  s     ;;C88DA% T 
 sFD14<qy  !  .&!+))4+E)BOOC 3 6 r6   c           	        U R                   (       Ga  [        SU R                  S   5      nU R                  S:X  a  [        R
                  " U R                  5      nUR                  nU R                   Vs/ s H  oDR                  PM     nn[        USS9nU R                  (       a  [        [        U5      5      nOU R                  S   n[        UR                  5      R                  XgS9nUR!                  XR"                  S9n	X)l        U	R'                  U SS9$ [)        [+        [-        [        U R                  5      5      U R                  5      5      n
UR.                  nU R                  u  pU" XU R0                  S9nXl        UR'                  U SS9$ [        S	U R                  S   5      n/ nU R                   H  n0 n[5        U R                  5       HV  u  nnUU R                  :X  a  M  UR"                  S
U-
     nUR7                  U5      (       a  MB  UR9                  U5      UU'   MX     UR;                  UR                  U45        M     [=        XR                  U R                  U R0                  S9nU R0                  (       d  [?        5       (       d  URA                  5         UR!                  UUR"                  S9nUR'                  U SS9$ s  snf )Nr$   r   )r%   )index)axesr4   )method)r   r-   r#   rE   )concat_axisr-   )!rT   r   r2   rX   rj   consensus_name_attrr   _valuesr   r'   r   rV   new_axesrI   _mgr
from_array_constructor_from_mgrr   _name__finalize__dictro   range_constructor_expanddimr-   columns	enumerateequalsget_indexerrp   r   r
   _consolidate_inplace)rZ   r\   rg   consserarrsres	new_indexmgrresultdatar   r   dfmgrs_indexersrb   indexersax
new_labels
obj_labelsnew_dataouts                         r3   r>   _Concatenator.get_resultn  se   
 ???(DIIaL1F ||q ..tyy9**/3yy9yy9#Dq1 $$ -c#h 7I $a 0I6;;'2232H55c5I#**4*AA Cc$))n 5tyyAB 44!%$$))<$
tH== +tyy|4FMyy&/&>NB
T\\)  "%!b&!1J%,,Z88'1'='=j'I '? $$chh%9: ! ,}}$,,TYYH 99%8%:%:--/..xhmm.LC##D#::q :s   6Kc                x    U R                   (       a  U R                  S:X  a  gU R                  S   R                  $ )NrE      r   )rT   rX   r2   rP   )rZ   s    r3   _get_result_dim_Concatenator._get_result_dim  s+    ??t||q099Q<$$$r6   c                    U R                  5       n[        U5       Vs/ s H/  nX R                  :X  a  U R                  OU R	                  U5      PM1     sn$ s  snf r/   )r   r   rX   _get_concat_axis_get_comb_axis)rZ   rP   is      r3   r   _Concatenator.new_axes  s[    ##% 4[
  &',,%6D!!D<O<OPQ<RR 
 	
 
s   6Ac                    U R                   S   R                  U5      n[        U R                   UU R                  U R                  U R
                  S9$ )Nr   )r%   rK   r,   r-   )r2   rU   r   rK   r,   r-   )rZ   r   	data_axiss      r3   r   _Concatenator._get_comb_axis  sF    IIaL88;	%IInn
 	
r6   c                   U R                   (       Gah  U R                  S:X  a'  U R                   Vs/ s H  oR                  PM     nnGOcU R                  (       a   [        [        U R                  5      5      nU$ U R                  c  S/[        U R                  5      -  nSnSn[        U R                  5       H_  u  pqUR                  S:w  a"  [        S[        U5      R                   S35      eUR                  b  UR                  XG'   SnMV  XTU'   US-  nMa     U(       a  [        U5      $ [        [        U R                  5      5      $ [        U R                  5      R!                  U R"                  5      $ U R                   Vs/ s H  oR$                  U R&                     PM     nnU R                  (       a  [        [)        S U 5       5      5      nU$ U R                  c$  U R*                  b  [-        S	5      e[/        U5      nO+[1        X R                  U R*                  U R"                  5      nU R3                  U5        U$ s  snf s  snf )
z3
Return index to be used along concatenation axis.
r   NFrE   z6Cannot concatenate type 'Series' with object of type ''Tc              3  8   #    U  H  n[        U5      v   M     g 7fr/   )rV   ).0r   s     r3   	<genexpr>1_Concatenator._get_concat_axis.<locals>.<genexpr>  s     #<GqCFFG   z+levels supported only when keys is not None)rT   rX   r2   r   r'   r   rV   r(   r   rP   rH   rI   rJ   rg   r   r   	set_namesr*   r   r%   r{   r)   rL   _concat_indexes_make_concat_multiindex_maybe_check_integrity)	rZ   xindexesidxr*   num	has_namesr   r   s	            r3   r   _Concatenator._get_concat_axis  s   
 ???||q ,0II6Iq77I6""#C		N3
")-TYY(?!	%dii0DAvv{'//3Aw/?/?.@C  vv)#$66$(	#&aq 1  <'(TYY88#DII.88DD26))<)Qvvdii()G<#<G#< <=CJ99{{& !NOO)'2K1DKKK 	##K0Y 76 =s   I
	"Ic                    U R                   (       a@  UR                  (       d.  XR                  5          R                  5       n[	        SU 35      eg g )Nz!Indexes have overlapping values: )r+   	is_unique
duplicateduniquerL   )rZ   concat_indexoverlaps      r3   r   $_Concatenator._maybe_check_integrity  sK      ))&'>'>'@AHHJ #DWI!NOO * !r6   )rS   rT   r%   rX   r-   r'   rK   r(   r)   r*   r2   r,   r+   )	r   r;   NNNFFTF)r2   EIterable[Series | DataFrame] | Mapping[HashableT, Series | DataFrame]r%   r    r&   rG   r(   Iterable[Hashable] | Noner*   list[HashableT] | Noner'   rA   r+   rA   r-   rA   r,   rA   returnNone)r2   list[Series | DataFrame]r   set[int])r2   r   r   z-tuple[list[Series | DataFrame], Index | None])r2   r   r[   r   r   z3tuple[Series | DataFrame, list[Series | DataFrame]])
r2   r   r\   zSeries | DataFramer'   rA   r%   r!   r   r   )r   int)r   zlist[Index])r   r!   r   r   r   r   )r   r   )rJ   
__module____qualname____firstlineno____doc____annotations__r]   rN   rM   rO   rW   r>   r   r   r   r   r   r   __static_attributes__r0   r6   r3   r=   r=     sS    J
 *.(,"!&ISI I 	I
 (I &I I I I I 
IV1S1 
7	1f &    
= D)&) #) 	)
 ) 
")VE;N% 
 

 2 2hPr6   r=   c                0    U S   R                  U SS  5      $ )Nr   rE   )rp   )r   s    r3   r   r   	  s    1:WQR[))r6   c           
     
   Uc  [        US   [        5      (       d  Ub_  [        U5      S:  aP  [        [	        U6 5      nUc  S /[        U5      -  nUc  [        U5      u  pRO^U Vs/ s H  n[        U5      PM     nnOBU/nUc  S /nUc  [        U5      R                  5       /nOU Vs/ s H  n[        U5      PM     nnU H0  nUR                  (       a  M  [        SUR                  5        35      e   [        U 5      (       a  [        S U 5       5      (       Gdr  / n[	        XB5       GHY  u  p/ n
[        U	[        5      (       av  U	R                  U5      (       a`  U  Vs/ s H  n[        U5      PM     nnUR                  [         R"                  " [         R$                  " [        U	5      5      U5      5        M  [	        X5       H  u  p['        U5      ['        U5      -  X}:H  -  nUR)                  5       (       d  [        SU SU 35      e[         R*                  " U5      S   S   nU
R                  [         R"                  " U[        U5      5      5        M     UR                  [         R,                  " U
5      5        GM\     [/        U 5      n[        U[0        5      (       a7  UR3                  UR4                  5        UR3                  UR6                  5        O0[9        U5      u  nnUR                  U5        UR                  U5        [        U5      [        U5      :X  a  [        U5      nOQ[        U  Vs1 s H  oR:                  iM     sn5      S:X  d  [=        S5      e[        U5      [        [?        U 6 5      -   n[1        X(USS	9$ U S   n[        U5      n[        U 5      n[        U5      n[        U5      n/ n[	        XB5       Hs  u  p[        U	5      nURA                  U5      nUS
:H  nUR)                  5       (       a  [        SUU   < 35      eUR                  [         R"                  " UU5      5        Mu     [        U[0        5      (       a]  UR3                  UR4                  5        UR3                  UR6                   Vs/ s H  n[         RB                  " UU5      PM     sn5        OdUR                  UR                  5       5        UR                  5       RA                  U5      nUR                  [         RB                  " UU5      5        [        U5      [        U5      :  a  UR3                  URD                  5        [1        UUUSS	9$ s  snf s  snf s  snf s  snf s  snf )Nr   rE   zLevel values not unique: c              3  8   #    U  H  oR                   v   M     g 7fr/   )r   )r   levels     r3   r   *_make_concat_multiindex.<locals>.<genexpr>'  s     /TVEVr   zKey z not in level z@Cannot concat indices that do not have the same number of levelsF)r)   codesr*   r+   z"Values not found in passed level: )#rF   tuplerV   ri   ro   r   r   r   r   rL   tolistr   allr   r   rp   rz   repeataranger   anynonzeroconcatenater   r   extendr)   r   r   nlevelsAssertionErrorr   r   tiler*   )r   r(   r)   r*   zipped_r   r   
codes_listhlevel	to_concatr   lenskeyr   maskr   r   r   
categoriesr   nkpieces	new_names
new_levels	new_codeshlevel_indexmappedlabsingle_codess                                 r3   r   r     s   :d1gu55s6{Qc4j!=FS[(E>08IAv/56v!l1ovF6F=FE>"4(//12F/56v!l1ovF688HIJJ  G$$C/TV/T,T,T

 !0MFI&%((V]]5-A-A,34GSCG4!!"))BIIc&k,BD"IJ"%f"6JC K$s)3ED88::(4uN5')JKK

4(+A.A$$RYYq#e*%=> #7 !!"..";< 1  'w/ lJ//MM,--.l001 7 EE:MM*%e$u:V$KE w7ww78A=$V 
 K$':G'D"EEE55
 	
 
IIA'lG UIfJ I V,#F+""<0|88::4\$5G4JK  	61-. - )Z(()**+9??K?C"''#w/?KL)**,- '')55i@w78
9~J'))e I 7 7 58 8N Ls   &U)U"U$=U)!U.)r2   z3Iterable[DataFrame] | Mapping[HashableT, DataFrame]r%   Literal[0, 'index']r&   rG   r'   rA   r(   r   r*   r   r+   rA   r,   rA   r-   bool | Noner   r#   )r2   z-Iterable[Series] | Mapping[HashableT, Series]r%   r  r&   rG   r'   rA   r(   r   r*   r   r+   rA   r,   rA   r-   r  r   r$   )r2   r   r%   r  r&   rG   r'   rA   r(   r   r*   r   r+   rA   r,   rA   r-   r  r   DataFrame | Series)r2   r   r%   zLiteral[1, 'columns']r&   rG   r'   rA   r(   r   r*   r   r+   rA   r,   rA   r-   r  r   r#   )r2   r   r%   r    r&   rG   r'   rA   r(   r   r*   r   r+   rA   r,   rA   r-   r  r   r  r   )NN)r   r   )>r   
__future__r   collectionsr   typingr   r   r   r   r	   rl   numpyrz   pandas._configr
   pandas.util._decoratorsr   pandas.util._exceptionsr   pandas.core.dtypes.commonr   r   pandas.core.dtypes.concatr   pandas.core.dtypes.genericr   r   pandas.core.dtypes.missingr   pandas.core.arrays.categoricalr   r   pandas.core.commoncorecommonrj   pandas.core.indexes.apir   r   r   r   r   r   r   pandas.core.internalsr   collections.abcr   r   r   pandas._typingr    r!   r"   rQ   r#   r$   r4   r=   r   r   r0   r6   r3   <module>r     s   #     . 2 4 4 , !     7   
 !$&)$' 
=  	
  $ "     
  
 !$&)$' 
7  	
  $ "     
  
 !$&)$' 
O  	
  $ "     
  

 &)$' 
O   	
  $ "     
  
 &)$' 
O  	
  $ "     
& &*$("n
On n 	n
 n $n "n n n n nbxP xPv*qr6   