Python – How long does my code take to run?

Recently, I wanted to do some performance of my code. The following is what I’ve used to get some performance timing.

The following is the code I’ve used.

import yfinance as yf
tickers = ['^AORD', '^DJI']
def isupdown(x):
    if x > 0:
        return ' up '
    else:
        return ' down '

def GetStock(stocks):
    stock = yf.Ticker(stocks)
    price = stock.info['regularMarketPrice']
    marketopen = stock.info['regularMarketOpen']
    myval = (((price - marketopen)/marketopen))*100
    points = (price - marketopen)
    stock = stocks + ' - Stock opened at ' + str(marketopen) + ' Currently ' + str(price) + isupdown(myval) + str(round(myval,2)) + '% ' + isupdown(myval) + str(round(points)) + ' points'
    return stock

print(GetStock('^AORD'))
print(GetStock('^DJI'))

Run the code with the following:

python -m cProfile get_stocks.py

As we can see, the code took 8.3 seconds to run and the following is a breakdown of each module which is handy to see where there might be any bottlenecks.

^AORD - Stock opened at 7356.1 Currently 7405.2 up 0.67%  up 49 points
^DJI - Stock opened at 32989.27 Currently 33544.34 up 1.68%  up 555 points
         697638 function calls (679601 primitive calls) in 8.305 seconds

   Ordered by: standard name

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:2(<module>)
       12    0.000    0.000    0.000    0.000 <__array_function__ internals>:2(array_equal)
        1    0.000    0.000    0.000    0.000 <__array_function__ internals>:2(concatenate)
        5    0.000    0.000    0.000    0.000 <__array_function__ internals>:2(copyto)
        4    0.000    0.000    0.000    0.000 <__array_function__ internals>:2(ndim)
        4    0.000    0.000    0.000    0.000 <__array_function__ internals>:2(prod)
    674/7    0.008    0.000    1.474    0.211 <frozen importlib._bootstrap>:1002(_find_and_load)
        6    0.000    0.000    0.215    0.036 <frozen importlib._bootstrap>:1018(_gcd_import)
  849/546    0.002    0.000    0.832    0.002 <frozen importlib._bootstrap>:1033(_handle_fromlist)
     1417    0.004    0.000    0.004    0.000 <frozen importlib._bootstrap>:112(release)
      674    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:152(__init__)
      674    0.001    0.000    0.012    0.000 <frozen importlib._bootstrap>:156(__enter__)
      674    0.001    0.000    0.004    0.000 <frozen importlib._bootstrap>:160(__exit__)
     1417    0.005    0.000    0.010    0.000 <frozen importlib._bootstrap>:166(_get_module_lock)
      673    0.001    0.000    0.002    0.000 <frozen importlib._bootstrap>:185(cb)
      743    0.001    0.000    0.007    0.000 <frozen importlib._bootstrap>:203(_lock_unlock_module)
    866/5    0.001    0.000    1.465    0.293 <frozen importlib._bootstrap>:220(_call_with_frames_removed)
     6039    0.003    0.000    0.003    0.000 <frozen importlib._bootstrap>:231(_verbose_message)
       19    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:241(_requires_builtin_wrapper)
      546    0.001    0.000    0.001    0.000 <frozen importlib._bootstrap>:35(_new_module)
      695    0.001    0.000    0.001    0.000 <frozen importlib._bootstrap>:351(__init__)
     1161    0.001    0.000    0.020    0.000 <frozen importlib._bootstrap>:385(cached)
     1198    0.001    0.000    0.002    0.000 <frozen importlib._bootstrap>:398(parent)
      640    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:406(has_location)
    25/22    0.000    0.000    0.037    0.002 <frozen importlib._bootstrap>:415(spec_from_loader)
      640    0.004    0.000    0.029    0.000 <frozen importlib._bootstrap>:486(_init_module_attrs)
  640/638    0.002    0.000    0.141    0.000 <frozen importlib._bootstrap>:558(module_from_spec)
      673    0.001    0.000    0.005    0.000 <frozen importlib._bootstrap>:58(__init__)
    640/5    0.004    0.000    1.468    0.294 <frozen importlib._bootstrap>:659(_load_unlocked)
      665    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap>:736(find_spec)
       19    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap>:757(create_module)
       19    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:765(exec_module)
       19    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:782(is_package)
      646    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap>:811(find_spec)
     1417    0.004    0.000    0.005    0.000 <frozen importlib._bootstrap>:87(acquire)
     2006    0.001    0.000    0.001    0.000 <frozen importlib._bootstrap>:874(__enter__)
     2006    0.001    0.000    0.001    0.000 <frozen importlib._bootstrap>:878(__exit__)
  665/638    0.012    0.000    0.373    0.001 <frozen importlib._bootstrap>:901(_find_spec)
        6    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap>:948(_sanity_check)
    671/5    0.004    0.000    1.473    0.295 <frozen importlib._bootstrap>:967(_find_and_load_unlocked)
      546    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1006(__init__)
      547    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1031(get_filename)
      546    0.003    0.000    0.132    0.000 <frozen importlib._bootstrap_external>:1036(get_data)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1047(get_resource_reader)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1057(resource_path)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1063(is_resource)
      546    0.001    0.000    0.061    0.000 <frozen importlib._bootstrap_external>:1077(path_stats)
     5596    0.005    0.000    0.007    0.000 <frozen importlib._bootstrap_external>:114(<listcomp>)
       69    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:1155(__init__)
    69/67    0.000    0.000    0.108    0.002 <frozen importlib._bootstrap_external>:1171(create_module)
    69/41    0.000    0.000    0.153    0.004 <frozen importlib._bootstrap_external>:1179(exec_module)
     1095    0.002    0.000    0.007    0.000 <frozen importlib._bootstrap_external>:127(_path_split)
     3285    0.002    0.000    0.003    0.000 <frozen importlib._bootstrap_external>:129(<genexpr>)
       74    0.001    0.000    0.018    0.000 <frozen importlib._bootstrap_external>:1324(_path_hooks)
     1289    0.002    0.000    0.019    0.000 <frozen importlib._bootstrap_external>:1337(_path_importer_cache)
     2631    0.002    0.000    0.286    0.000 <frozen importlib._bootstrap_external>:135(_path_stat)
       24    0.000    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:1359(_legacy_get_spec)
      646    0.006    0.000    0.332    0.001 <frozen importlib._bootstrap_external>:1374(_get_spec)
      646    0.001    0.000    0.333    0.001 <frozen importlib._bootstrap_external>:1406(find_spec)
      856    0.001    0.000    0.094    0.000 <frozen importlib._bootstrap_external>:145(_path_is_mode_type)
       74    0.001    0.000    0.002    0.000 <frozen importlib._bootstrap_external>:1466(__init__)
      592    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1472(<genexpr>)
      615    0.002    0.000    0.007    0.000 <frozen importlib._bootstrap_external>:1500(_get_spec)
     1155    0.016    0.000    0.305    0.000 <frozen importlib._bootstrap_external>:1505(find_spec)
      782    0.001    0.000    0.088    0.000 <frozen importlib._bootstrap_external>:154(_path_isfile)
       74    0.002    0.000    0.016    0.000 <frozen importlib._bootstrap_external>:1556(_fill_cache)
       74    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:1585(<setcomp>)
       74    0.000    0.000    0.006    0.000 <frozen importlib._bootstrap_external>:159(_path_isdir)
       74    0.000    0.000    0.008    0.000 <frozen importlib._bootstrap_external>:1597(path_hook_for_FileFinder)
      143    0.001    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:167(_path_isabs)
     1092    0.006    0.000    0.029    0.000 <frozen importlib._bootstrap_external>:361(cache_from_source)
      615    0.002    0.000    0.019    0.000 <frozen importlib._bootstrap_external>:491(_get_cached)
  548/547    0.001    0.000    0.001    0.000 <frozen importlib._bootstrap_external>:523(_check_name_wrapper)
      546    0.002    0.000    0.004    0.000 <frozen importlib._bootstrap_external>:560(_classify_pyc)
      546    0.001    0.000    0.002    0.000 <frozen importlib._bootstrap_external>:593(_validate_timestamp_pyc)
     1155    0.002    0.000    0.002    0.000 <frozen importlib._bootstrap_external>:64(_relax_case)
      546    0.002    0.000    0.124    0.000 <frozen importlib._bootstrap_external>:645(_compile_bytecode)
      615    0.003    0.000    0.004    0.000 <frozen importlib._bootstrap_external>:696(spec_from_file_location)
     1638    0.002    0.000    0.003    0.000 <frozen importlib._bootstrap_external>:79(_unpack_uint32)
        1    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:833(is_package)
      546    0.000    0.000    0.000    0.000 <frozen importlib._bootstrap_external>:841(create_module)
    546/5    0.003    0.000    1.468    0.294 <frozen importlib._bootstrap_external>:844(exec_module)
     5596    0.043    0.000    0.066    0.000 <frozen importlib._bootstrap_external>:91(_path_join)
      546    0.009    0.000    0.347    0.001 <frozen importlib._bootstrap_external>:916(get_code)
       24    0.000    0.000    0.000    0.000 <frozen zipimport>:109(find_loader)
       48    0.000    0.000    0.000    0.000 <frozen zipimport>:308(_get_module_path)
       24    0.000    0.000    0.000    0.000 <frozen zipimport>:312(_is_dir)
       24    0.000    0.000    0.000    0.000 <frozen zipimport>:321(_get_module_info)
       74    0.001    0.000    0.009    0.000 <frozen zipimport>:63(__init__)
       56    0.000    0.000    0.000    0.000 <string>:1(<lambda>)
        1    0.000    0.000    0.000    0.000 <string>:1(<module>)
        1    0.000    0.000    0.000    0.000 <string>:1(__create_fn__)
        1    0.000    0.000    0.000    0.000 <string>:4(cy_wrap)
        1    0.000    0.000    0.000    0.000 ElementPath.py:334(_SelectorContext)
        1    0.000    0.000    0.001    0.001 ElementPath.py:59(<module>)
        1    0.000    0.000    0.010    0.010 ElementTree.py:1(<module>)
        1    0.000    0.000    0.000    0.000 ElementTree.py:106(ParseError)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1116(_ListDataStream)
        1    0.000    0.000    0.000    0.000 ElementTree.py:125(Element)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1281(XMLPullParser)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1393(TreeBuilder)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1515(XMLParser)
        1    0.000    0.000    0.000    0.000 ElementTree.py:1778(C14NWriterTarget)
        1    0.000    0.000    0.000    0.000 ElementTree.py:477(QName)
        1    0.000    0.000    0.000    0.000 ElementTree.py:525(ElementTree)
        1    0.000    0.000    0.000    0.000 __config__.py:3(<module>)
        1    0.000    0.000    0.000    0.000 __future__.py:1(<module>)
        1    0.000    0.000    0.000    0.000 __future__.py:81(_Feature)
       10    0.000    0.000    0.000    0.000 __future__.py:83(__init__)
       66    0.003    0.000    1.993    0.030 __init__.py:1(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:101(TreeBuilder)
        2    0.000    0.000    0.000    0.000 __init__.py:102(CFunctionType)
        1    0.000    0.000    0.000    0.000 __init__.py:1040(StreamHandler)
        1    0.000    0.000    0.000    0.000 __init__.py:109(Encoding)
        6    0.000    0.000    0.215    0.036 __init__.py:109(import_module)
        1    0.000    0.000    0.000    0.000 __init__.py:11(DeprecatedTzFormatWarning)
        1    0.000    0.000    0.000    0.000 __init__.py:1123(FileHandler)
        1    0.000    0.000    0.000    0.000 __init__.py:1144(FieldsDict)
        1    0.000    0.000    0.000    0.000 __init__.py:115(EmptyDataError)
        1    0.000    0.000    0.000    0.000 __init__.py:1170(InputGetter)
        1    0.000    0.000    0.000    0.000 __init__.py:1194(_StderrHandler)
        1    0.000    0.000    0.000    0.000 __init__.py:12(NullFrequencyError)
        1    0.000    0.000    0.000    0.000 __init__.py:1200(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:1218(PlaceHolder)
        1    0.000    0.000    0.000    0.000 __init__.py:122(ParserWarning)
        2    0.000    0.000    0.000    0.000 __init__.py:1224(__init__)
        4    0.000    0.000    0.000    0.000 __init__.py:1230(append)
        3    0.000    0.000    0.000    0.000 __init__.py:124(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:1259(InputMixin)
        1    0.000    0.000    0.000    0.000 __init__.py:1260(Manager)
        1    0.000    0.000    0.000    0.000 __init__.py:1265(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:1276(disable)
        1    0.000    0.000    0.000    0.000 __init__.py:1280(disable)
        7    0.000    0.000    0.000    0.000 __init__.py:1284(getLogger)
        1    0.000    0.000    0.000    0.000 __init__.py:1290(TextareaElement)
        1    0.000    0.000    0.000    0.000 __init__.py:131(Classes)
        1    0.000    0.000    0.000    0.000 __init__.py:1325(SelectElement)
        7    0.000    0.000    0.000    0.000 __init__.py:1335(_fixupParents)
        1    0.000    0.000    0.000    0.000 __init__.py:1359(_fixupChildren)
        1    0.000    0.000    0.000    0.000 __init__.py:1389(Logger)
        8    0.000    0.000    0.000    0.000 __init__.py:1404(__init__)
       14    0.000    0.000    0.000    0.000 __init__.py:142(_check_size)
       16    0.000    0.000    0.000    0.000 __init__.py:1424(debug)
        1    0.000    0.000    0.000    0.000 __init__.py:1428(MultipleSelectOptions)
        1    0.000    0.000    0.000    0.000 __init__.py:1489(RadioGroup)
        1    0.000    0.000    0.004    0.004 __init__.py:15(<module>)
       22    0.000    0.000    0.002    0.000 __init__.py:152(flex_method_SERIES)
        1    0.000    0.000    0.000    0.000 __init__.py:154(py_object)
        1    0.000    0.000    0.000    0.000 __init__.py:1542(CheckboxGroup)
        1    0.000    0.000    0.000    0.000 __init__.py:1586(CheckboxValues)
        2    0.000    0.000    0.000    0.000 __init__.py:1601(addHandler)
        1    0.000    0.000    0.000    0.000 __init__.py:1629(InputElement)
        1    0.000    0.000    0.000    0.000 __init__.py:163(MergeError)
        1    0.000    0.000    0.000    0.000 __init__.py:163(c_short)
        1    0.000    0.000    0.000    0.000 __init__.py:167(c_ushort)
        1    0.000    0.000    0.000    0.000 __init__.py:1675(getEffectiveLevel)
       16    0.000    0.000    0.000    0.000 __init__.py:1689(isEnabledFor)
        1    0.000    0.000    0.008    0.008 __init__.py:17(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:170(AccessorRegistrationWarning)
        1    0.000    0.000    0.000    0.000 __init__.py:171(c_long)
        1    0.000    0.000    0.000    0.000 __init__.py:1726(LabelElement)
        1    0.000    0.000    0.000    0.000 __init__.py:1743(RootLogger)
        1    0.000    0.000    0.000    0.000 __init__.py:1749(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:175(c_ulong)
        1    0.000    0.000    0.000    0.000 __init__.py:176(AbstractMethodError)
        1    0.000    0.000    0.000    0.000 __init__.py:1760(LoggerAdapter)
        4    0.000    0.000    0.001    0.000 __init__.py:183(dumps)
        1    0.000    0.000    0.034    0.034 __init__.py:19(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:1907(HTMLParser)
        3    0.000    0.000    0.000    0.000 __init__.py:1911(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:1916(XHTMLParser)
        1    0.000    0.000    0.000    0.000 __init__.py:192(c_float)
       12    0.000    0.000    0.000    0.000 __init__.py:193(_checkLevel)
        1    0.000    0.000    0.000    0.000 __init__.py:1933(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:194(<dictcomp>)
        1    0.000    0.000    0.000    0.000 __init__.py:196(c_double)
        1    0.000    0.000    0.000    0.000 __init__.py:199(NumbaUtilError)
        5    0.000    0.000    0.239    0.048 __init__.py:2(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:200(c_longdouble)
        7    0.000    0.000    0.000    0.000 __init__.py:2034(getLogger)
        1    0.000    0.000    0.000    0.000 __init__.py:205(DuplicateLabelError)
        1    0.000    0.000    0.000    0.000 __init__.py:21(__deprecated_private_func)
        1    0.000    0.000    0.000    0.000 __init__.py:210(c_longlong)
        1    0.000    0.000    0.000    0.000 __init__.py:213(UTC)
        1    0.000    0.000    0.000    0.000 __init__.py:214(c_ulonglong)
        1    0.000    0.000    0.000    0.000 __init__.py:2162(NullHandler)
        2    0.000    0.000    0.000    0.000 __init__.py:2178(createLock)
       13    0.000    0.000    0.000    0.000 __init__.py:218(_acquireLock)
        1    0.000    0.000    0.000    0.000 __init__.py:22(<listcomp>)
        2    0.000    0.000    1.242    0.621 __init__.py:22(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:22(PerformanceWarning)
        1    0.000    0.000    0.000    0.000 __init__.py:221(c_ubyte)
        1    0.000    0.000    0.000    0.000 __init__.py:226(InvalidIndexError)
       13    0.000    0.000    0.000    0.000 __init__.py:227(_releaseLock)
        1    0.000    0.000    0.000    0.000 __init__.py:228(c_byte)
       38    0.000    0.000    0.000    0.000 __init__.py:23(<genexpr>)
        1    0.000    0.000    0.000    0.000 __init__.py:233(c_char)
        1    0.000    0.000    0.000    0.000 __init__.py:238(_register_at_fork_reinit_lock)
        1    0.000    0.000    0.000    0.000 __init__.py:238(c_char_p)
        1    0.000    0.000    0.000    0.000 __init__.py:239(HtmlMixin)
       62    0.000    0.000    0.000    0.000 __init__.py:24(__new__)
        1    0.000    0.000    0.000    0.000 __init__.py:244(c_void_p)
        1    0.000    0.000    0.000    0.000 __init__.py:249(c_bool)
        1    0.000    0.000    0.000    0.000 __init__.py:254(c_wchar_p)
        1    0.000    0.000    0.000    0.000 __init__.py:256(<dictcomp>)
        1    0.000    0.000    0.000    0.000 __init__.py:259(c_wchar)
        1    0.000    0.000    0.000    0.000 __init__.py:262(_reset_cache)
        1    0.000    0.000    0.000    0.000 __init__.py:270(LogRecord)
        1    0.000    0.000    0.000    0.000 __init__.py:272(IncrementalDecoder)
        2    0.000    0.000    0.000    0.000 __init__.py:276(__getattr__)
        1    0.000    0.000    0.000    0.000 __init__.py:28(UnsupportedFunctionCall)
       12    0.000    0.000    0.041    0.003 __init__.py:299(loads)
        4    0.000    0.000    0.934    0.233 __init__.py:3(<module>)
        1    0.006    0.006    0.013    0.013 __init__.py:31(<module>)
        1    0.000    0.000    0.000    0.000 __init__.py:313(_CountryTimezoneDict)
        1    0.000    0.000    0.000    0.000 __init__.py:319(CDLL)
        1    0.000    0.000    0.000    0.000 __init__.py:32(TreeBuilderRegistry)
        1    0.000    0.000    0.000    0.000 __init__.py:322(SAXTreeBuilder)
        1    0.000    0.000    0.000    0.000 __init__.py:323(IncrementalEncoder)
        1    0.000    0.000    0.000    0.000 __init__.py:337(_sanity_check)
        3    0.000    0.000    0.002    0.001 __init__.py:340(__init__)
       23    0.002    0.000    0.005    0.000 __init__.py:345(namedtuple)
        3    0.000    0.000    0.000    0.000 __init__.py:35(ascii_lower)
        1    0.000    0.000    0.000    0.000 __init__.py:36(UnsortedIndexError)
        3    0.000    0.000    0.000    0.000 __init__.py:36(__deprecate_private_class)
        3    0.000    0.000    0.000    0.000 __init__.py:368(_FuncPtr)
        1    0.000    0.000    0.000    0.000 __init__.py:37(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:372(HTMLTreeBuilder)
        1    0.000    0.000    0.000    0.000 __init__.py:372(_CountryNameDict)
        1    0.000    0.000    0.000    0.000 __init__.py:384(__getattr__)
        1    0.000    0.000    0.000    0.000 __init__.py:391(__getitem__)
       14    0.000    0.000    0.003    0.000 __init__.py:393(flex_arith_method_FRAME)
        1    0.000    0.000    0.000    0.000 __init__.py:397(PyDLL)
        1    0.000    0.000    0.000    0.000 __init__.py:398(_FixedOffset)
        1    0.000    0.000    0.000    0.000 __init__.py:406(WinDLL)
        4    0.000    0.000    0.000    0.000 __init__.py:41(register)
        1    0.000    0.000    0.001    0.001 __init__.py:411(PercentStyle)
        1    0.000    0.000    0.000    0.000 __init__.py:415(HRESULT)
       24    0.000    0.000    0.000    0.000 __init__.py:415(text_content)
        1    0.000    0.000    0.000    0.000 __init__.py:418(__init__)
      151    0.000    0.000    0.000    0.000 __init__.py:419(<genexpr>)
        1    0.000    0.000    0.000    0.000 __init__.py:424(validate)
        1    0.000    0.000    0.000    0.000 __init__.py:428(OleDLL)
        1    0.000    0.000    0.000    0.000 __init__.py:43(ParserError)
        4    0.000    0.000    0.000    0.000 __init__.py:43(normalize_encoding)
        3    0.000    0.000    0.000    0.000 __init__.py:43(private_class)
        1    0.000    0.000    0.000    0.000 __init__.py:437(LibraryLoader)
        6    0.000    0.000    0.001    0.000 __init__.py:437(flex_comp_method_FRAME)
        4    0.000    0.000    0.000    0.000 __init__.py:438(__init__)
        1    0.000    0.000    0.001    0.001 __init__.py:439(StrFormatStyle)
        1    0.000    0.000    0.000    0.000 __init__.py:441(__getattr__)
        1    0.000    0.000    0.000    0.000 __init__.py:469(StringTemplateStyle)
        3    0.000    0.000    0.000    0.000 __init__.py:477(register_treebuilders_from)
        1    0.000    0.000    0.000    0.000 __init__.py:489(ParserRejectedMarkup)
        1    0.000    0.000    0.000    0.000 __init__.py:49(check_compatibility)
        1    0.000    0.000    0.000    0.000 __init__.py:5(<module>)
        1    0.000    0.000    0.001    0.001 __init__.py:5(HTTPStatus)
        3    0.000    0.000    0.000    0.000 __init__.py:501(PYFUNCTYPE)
        3    0.000    0.000    0.000    0.000 __init__.py:502(CFunctionType)
        1    0.000    0.000    0.000    0.000 __init__.py:508(Formatter)
        1    0.000    0.000    0.000    0.000 __init__.py:553(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:57(DtypeWarning)
        1    0.000    0.000    0.000    0.000 __init__.py:57(GuessedAtParserWarning)
        3    0.000    0.000    0.002    0.001 __init__.py:61(lookup)
        1    0.000    0.000    0.000    0.000 __init__.py:62(MarkupResemblesLocatorWarning)
        1    0.000    0.000    0.000    0.000 __init__.py:644(_MethodFunc)
        6    0.000    0.000    0.000    0.000 __init__.py:652(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:687(BufferingFormatter)
        1    0.000    0.000    0.000    0.000 __init__.py:688(HtmlComment)
        1    0.000    0.000    0.000    0.000 __init__.py:69(BeautifulSoup)
        1    0.000    0.000    0.000    0.000 __init__.py:692(HtmlElement)
        1    0.000    0.000    0.000    0.000 __init__.py:698(HtmlProcessingInstruction)
        1    0.000    0.000    0.000    0.000 __init__.py:70(createPool)
        4    0.000    0.000    0.002    0.000 __init__.py:70(search_function)
        1    0.000    0.000    0.000    0.000 __init__.py:702(HtmlEntity)
        1    0.000    0.000    0.000    0.000 __init__.py:706(HtmlElementClassLookup)
        4    0.000    0.000    0.000    0.000 __init__.py:717(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:729(Filter)
       74    0.000    0.000    0.000    0.000 __init__.py:735(lookup)
        1    0.000    0.000    0.000    0.000 __init__.py:75(__fix_docstring)
        2    0.038    0.019    0.038    0.019 __init__.py:758(document_fromstring)
        2    0.000    0.000    0.000    0.000 __init__.py:76(CFUNCTYPE)
        1    0.000    0.000    0.000    0.000 __init__.py:765(BeautifulStoneSoup)
        1    0.000    0.000    0.000    0.000 __init__.py:766(Filterer)
       11    0.000    0.000    0.000    0.000 __init__.py:771(__init__)
        1    0.000    0.000    0.000    0.000 __init__.py:776(StopParsing)
        1    0.000    0.000    0.000    0.000 __init__.py:780(FeatureNotFound)
        1    0.000    0.000    0.289    0.289 __init__.py:8(<module>)
        3    0.000    0.000    0.000    0.000 __init__.py:838(_addHandlerRef)
        1    0.000    0.000    0.000    0.000 __init__.py:848(Handler)
        3    0.000    0.000    0.000    0.000 __init__.py:857(__init__)
        2    0.000    0.000    0.038    0.019 __init__.py:860(fromstring)
        1    0.000    0.000    0.000    0.000 __init__.py:886(createLock)
        2    0.000    0.000    0.000    0.000 __init__.py:92(import_lzma)
        2    0.136    0.068    0.136    0.068 __init__.py:928(parse)
        1    0.000    0.000    0.000    0.000 __init__.py:94(task)
        1    0.000    0.000    0.000    0.000 __init__.py:964(FormElement)
        1    0.000    0.000    0.002    0.002 __meta__.py:1(<module>)
        1    0.000    0.000    0.000    0.000 __meta__.py:118(_is_pre)
        1    0.000    0.000    0.000    0.000 __meta__.py:123(_is_dev)
        1    0.000    0.000    0.000    0.000 __meta__.py:128(_is_post)
        1    0.000    0.000    0.000    0.000 __meta__.py:138(_get_canonical)
        1    0.000    0.000    0.000    0.000 __meta__.py:39(Version)
        1    0.000    0.000    0.000    0.000 __meta__.py:82(__new__)
        1    0.000    0.000    0.000    0.000 __version__.py:5(<module>)
        1    0.000    0.000    0.005    0.005 _add_newdocs.py:1(<module>)
       52    0.000    0.000    0.000    0.000 _add_newdocs.py:6230(refer_to_array_attribute)
        1    0.000    0.000    0.131    0.131 _add_newdocs_scalars.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _add_newdocs_scalars.py:17(numeric_type_aliases)
       16    0.000    0.000    0.000    0.000 _add_newdocs_scalars.py:18(type_aliases_gen)
       24    0.000    0.000    0.113    0.005 _add_newdocs_scalars.py:55(add_newdoc_for_scalar_type)
       34    0.000    0.000    0.000    0.000 _add_newdocs_scalars.py:61(<genexpr>)
       39    0.000    0.000    0.112    0.003 _add_newdocs_scalars.py:62(<genexpr>)
        1    0.000    0.000    0.000    0.000 _appengine_environ.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _appengine_environ.py:12(is_appengine_sandbox)
        1    0.000    0.000    0.000    0.000 _appengine_environ.py:22(is_local_appengine)
        1    0.000    0.000    0.000    0.000 _appengine_environ.py:28(is_prod_appengine)
        1    0.000    0.000    0.000    0.000 _appengine_environ.py:8(is_appengine)
        1    0.000    0.000    0.000    0.000 _asarray.py:1(<module>)
       22    0.000    0.000    0.000    0.000 _asarray.py:111(<setcomp>)
       22    0.000    0.000    0.000    0.000 _asarray.py:22(require)
        2    0.000    0.000    0.017    0.008 _base.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _base.py:376(BaseExcelReader)
        1    0.000    0.000    0.000    0.000 _base.py:593(ExcelWriter)
        1    0.000    0.000    0.000    0.000 _base.py:9(Trie)
        1    0.000    0.000    0.005    0.005 _base.py:993(ExcelFile)
        1    0.000    0.000    0.000    0.000 _bootlocale.py:11(getpreferredencoding)
        1    0.000    0.000    0.000    0.000 _collections.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _collections.py:107(HTTPHeaderDict)
       10    0.000    0.000    0.001    0.000 _collections.py:141(__init__)
      232    0.000    0.000    0.000    0.000 _collections.py:156(__getitem__)
      202    0.000    0.000    0.000    0.000 _collections.py:187(__iter__)
      192    0.000    0.000    0.000    0.000 _collections.py:215(add)
       10    0.000    0.000    0.000    0.000 _collections.py:231(extend)
        1    0.000    0.000    0.000    0.000 _collections.py:31(RecentlyUsedContainer)
       12    0.000    0.000    0.000    0.000 _collections.py:47(__init__)
       10    0.000    0.000    0.000    0.000 _collections.py:54(__getitem__)
        6    0.000    0.000    0.000    0.000 _collections.py:61(__setitem__)
       12    0.000    0.000    0.018    0.002 _collections.py:92(clear)
        1    0.000    0.000    0.000    0.000 _collections_abc.py:156(__subclasshook__)
        9    0.000    0.000    0.000    0.000 _collections_abc.py:262(__subclasshook__)
       24    0.000    0.000    0.000    0.000 _collections_abc.py:283(__subclasshook__)
       28    0.000    0.000    0.000    0.000 _collections_abc.py:315(__subclasshook__)
        7    0.000    0.000    0.000    0.000 _collections_abc.py:362(__subclasshook__)
        1    0.000    0.000    0.000    0.000 _collections_abc.py:381(__subclasshook__)
      187    0.000    0.000    0.000    0.000 _collections_abc.py:409(__subclasshook__)
        1    0.000    0.000    0.000    0.000 _collections_abc.py:504(__subclasshook__)
      222    0.000    0.000    0.001    0.000 _collections_abc.py:759(get)
       75    0.000    0.000    0.000    0.000 _collections_abc.py:766(__contains__)
       76    0.000    0.000    0.000    0.000 _collections_abc.py:778(items)
       33    0.000    0.000    0.000    0.000 _collections_abc.py:78(_check_methods)
       76    0.000    0.000    0.000    0.000 _collections_abc.py:801(__init__)
       12    0.000    0.000    0.000    0.000 _collections_abc.py:804(__len__)
     2304    0.002    0.000    0.008    0.000 _collections_abc.py:848(__iter__)
       16    0.000    0.000    0.000    0.000 _collections_abc.py:898(pop)
        1    0.000    0.000    0.000    0.000 _collections_abc.py:924(clear)
       78    0.001    0.000    0.002    0.000 _collections_abc.py:932(update)
        1    0.000    0.000    0.000    0.000 _color_data.py:7(<module>)
        3    0.000    0.000    0.002    0.001 _common.py:1(<module>)
        6    0.000    0.000    0.000    0.000 _common.py:13(tzname_in_python2)
        3    0.000    0.000    0.000    0.000 _common.py:132(_validate_fromutc_inputs)
        1    0.000    0.000    0.000    0.000 _common.py:149(_tzinfo)
        1    0.000    0.000    0.000    0.000 _common.py:267(tzrangebase)
        1    0.000    0.000    0.000    0.000 _common.py:6(weekday)
        7    0.000    0.000    0.000    0.000 _common.py:9(__init__)
       43    0.000    0.000    0.000    0.000 _compat_pickle.py:165(<genexpr>)
       86    0.000    0.000    0.000    0.000 _compat_pickle.py:167(<genexpr>)
        1    0.000    0.000    0.000    0.000 _compat_pickle.py:9(<module>)
        1    0.000    0.000    0.000    0.000 _compression.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _compression.py:33(DecompressReader)
        1    0.000    0.000    0.000    0.000 _compression.py:9(BaseStream)
        1    0.000    0.000    0.002    0.002 _core.py:1(<module>)
        1    0.000    0.000    0.001    0.001 _core.py:603(PlotAccessor)
        1    0.000    0.000    0.000    0.000 _datasource.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _datasource.py:196(DataSource)
        1    0.000    0.000    0.000    0.000 _datasource.py:536(Repository)
        1    0.000    0.000    0.000    0.000 _datasource.py:74(_FileOpeners)
        1    0.000    0.000    0.000    0.000 _datasource.py:99(__init__)
        1    0.000    0.000    0.001    0.001 _decorators.py:1(<module>)
        1    0.000    0.000    0.001    0.001 _decorators.py:11(deprecate)
        7    0.000    0.000    0.000    0.000 _decorators.py:157(_deprecate_kwarg)
        2    0.000    0.000    0.000    0.000 _decorators.py:206(_format_argument_list)
        3    0.000    0.000    0.000    0.000 _decorators.py:249(deprecate_nonkeyword_arguments)
        3    0.000    0.000    0.000    0.000 _decorators.py:276(decorate)
        2    0.000    0.000    0.460    0.230 _decorators.py:286(wrapper)
        3    0.000    0.000    0.000    0.000 _decorators.py:306(rewrite_axis_style_signature)
        3    0.000    0.000    0.000    0.000 _decorators.py:309(decorate)
      190    0.000    0.000    0.000    0.000 _decorators.py:336(doc)
      190    0.001    0.000    0.017    0.000 _decorators.py:356(decorator)
      190    0.000    0.000    0.009    0.000 _decorators.py:376(<listcomp>)
        1    0.000    0.000    0.000    0.000 _decorators.py:397(Substitution)
       96    0.000    0.000    0.000    0.000 _decorators.py:426(__init__)
       96    0.000    0.000    0.000    0.000 _decorators.py:432(__call__)
        1    0.000    0.000    0.000    0.000 _decorators.py:444(Appender)
      220    0.000    0.000    0.000    0.000 _decorators.py:466(__init__)
      220    0.001    0.000    0.027    0.000 _decorators.py:473(__call__)
        3    0.000    0.000    0.000    0.000 _decorators.py:481(indent)
        7    0.000    0.000    0.000    0.000 _decorators.py:85(deprecate_kwarg)
        1    0.000    0.000    0.016    0.016 _distributor_init.py:2(<module>)
        1    0.000    0.000    0.000    0.000 _dtype.py:1(<module>)
       95    0.000    0.000    0.000    0.000 _dtype.py:24(_kind_name)
       79    0.000    0.000    0.000    0.000 _dtype.py:307(_name_includes_bit_suffix)
       79    0.000    0.000    0.001    0.000 _dtype.py:321(_name_get)
        1    0.000    0.000    0.000    0.000 _dtype_ctypes.py:1(<module>)
       13    0.000    0.000    0.000    0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type)
       13    0.000    0.000    0.000    0.000 _dtype_ctypes.py:71(_from_ctypes_scalar)
        1    0.000    0.000    0.000    0.000 _encoded_words.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _encoded_words.py:73(_QByteMap)
        1    0.000    0.000    0.000    0.000 _endian.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _endian.py:23(_swapped_meta)
        1    0.000    0.000    0.000    0.000 _endian.py:46(BigEndianStructure)
        3    0.000    0.000    0.000    0.000 _exceptions.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _exceptions.py:105(SAXNotRecognizedException)
        1    0.000    0.000    0.000    0.000 _exceptions.py:115(SAXNotSupportedException)
        1    0.000    0.000    0.000    0.000 _exceptions.py:118(TooHardError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:123(AxisError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:125(SAXReaderNotAvailable)
        1    0.000    0.000    0.000    0.000 _exceptions.py:141(_ArrayMemoryError)
        6    0.000    0.000    0.000    0.000 _exceptions.py:17(_display_as_base)
        1    0.000    0.000    0.000    0.000 _exceptions.py:32(UFuncTypeError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:38(_UFuncBinaryResolutionError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:46(SAXParseException)
        1    0.000    0.000    0.000    0.000 _exceptions.py:54(_UFuncNoLoopError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:72(_UFuncCastingError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:81(_UFuncInputCastingError)
        1    0.000    0.000    0.000    0.000 _exceptions.py:9(SAXException)
        1    0.000    0.000    0.000    0.000 _exceptions.py:99(_UFuncOutputCastingError)
        1    0.000    0.000    0.000    0.000 _factories.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _factories.py:13(__call__)
        1    0.000    0.000    0.000    0.000 _factories.py:19(_TzFactory)
        1    0.000    0.000    0.000    0.000 _factories.py:25(_TzOffsetFactory)
        1    0.000    0.000    0.000    0.000 _factories.py:26(__init__)
        1    0.000    0.000    0.000    0.000 _factories.py:55(_TzStrFactory)
        1    0.000    0.000    0.000    0.000 _factories.py:56(__init__)
        1    0.000    0.000    0.000    0.000 _factories.py:8(_TzSingleton)
        1    0.000    0.000    0.000    0.000 _factories.py:9(__init__)
        1    0.000    0.000    0.000    0.000 _globals.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _globals.py:30(ModuleDeprecationWarning)
        1    0.000    0.000    0.000    0.000 _globals.py:44(VisibleDeprecationWarning)
        1    0.000    0.000    0.000    0.000 _globals.py:57(_NoValueType)
        1    0.000    0.000    0.000    0.000 _globals.py:77(__new__)
        9    0.000    0.000    0.000    0.000 _globals.py:87(__repr__)
        1    0.000    0.000    0.000    0.000 _html5lib.py:116(TreeBuilderForHtml5lib)
        1    0.000    0.000    0.056    0.056 _html5lib.py:2(<module>)
        1    0.000    0.000    0.000    0.000 _html5lib.py:236(AttrList)
        1    0.000    0.000    0.000    0.000 _html5lib.py:266(Element)
        1    0.000    0.000    0.000    0.000 _html5lib.py:41(HTML5TreeBuilder)
        1    0.000    0.000    0.000    0.000 _html5lib.py:460(TextNode)
        1    0.000    0.000    0.000    0.000 _htmlparser.py:18(HTMLParseError)
        1    0.000    0.000    0.009    0.009 _htmlparser.py:2(<module>)
        1    0.000    0.000    0.000    0.000 _htmlparser.py:294(HTMLParserTreeBuilder)
        1    0.000    0.000    0.000    0.000 _htmlparser.py:55(BeautifulSoupHTMLParser)
        1    0.000    0.000    0.026    0.026 _inputstream.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _inputstream.py:148(HTMLUnicodeInputStream)
        1    0.000    0.000    0.000    0.000 _inputstream.py:17(<listcomp>)
        1    0.000    0.000    0.000    0.000 _inputstream.py:18(<listcomp>)
        1    0.000    0.000    0.000    0.000 _inputstream.py:19(<listcomp>)
        1    0.000    0.000    0.000    0.000 _inputstream.py:378(HTMLBinaryInputStream)
        1    0.000    0.000    0.000    0.000 _inputstream.py:51(BufferedStream)
        1    0.000    0.000    0.000    0.000 _inputstream.py:578(EncodingBytes)
        1    0.000    0.000    0.000    0.000 _inputstream.py:676(EncodingParser)
        1    0.000    0.000    0.000    0.000 _inputstream.py:864(ContentAttrParser)
        1    0.000    0.000    0.000    0.000 _inspect.py:1(<module>)
      616    0.000    0.000    0.000    0.000 _inspect.py:13(ismethod)
       90    0.000    0.000    0.000    0.000 _inspect.py:131(strseq)
       40    0.000    0.000    0.000    0.000 _inspect.py:140(formatargspec)
       15    0.000    0.000    0.000    0.000 _inspect.py:142(<lambda>)
       16    0.000    0.000    0.000    0.000 _inspect.py:143(<lambda>)
       59    0.000    0.000    0.000    0.000 _inspect.py:144(<lambda>)
      616    0.000    0.000    0.000    0.000 _inspect.py:26(isfunction)
      612    0.000    0.000    0.000    0.000 _inspect.py:41(iscode)
      612    0.002    0.000    0.002    0.000 _inspect.py:65(getargs)
      616    0.001    0.000    0.004    0.000 _inspect.py:96(getargspec)
        1    0.000    0.000    0.001    0.001 _internal.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _internal.py:205(dummy_ctype)
        1    0.000    0.000    0.000    0.000 _internal.py:217(_getintp_ctype)
        1    0.000    0.000    0.000    0.000 _internal.py:240(_missing_ctypes)
        1    0.000    0.000    0.000    0.000 _internal.py:244(c_void_p)
        1    0.000    0.000    0.000    0.000 _internal.py:249(_ctypes)
        1    0.000    0.000    0.000    0.000 _internal.py:559(_Stream)
       50    0.000    0.000    0.000    0.000 _internal.py:815(_ufunc_doc_signature_formatter)
       78    0.000    0.000    0.000    0.000 _internal.py:826(<genexpr>)
       15    0.000    0.000    0.000    0.000 _internal.py:863(npy_ctypes_check)
        1    0.000    0.000    0.000    0.000 _internal.py:881(recursive)
       38    0.000    0.000    0.000    0.000 _internal_utils.py:14(to_native_string)
        1    0.000    0.000    0.029    0.029 _internal_utils.py:3(<module>)
        6    0.000    0.000    0.000    0.000 _internal_utils.py:30(unicode_is_ascii)
        1    0.000    0.000    0.000    0.000 _iotools.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _iotools.py:134(LineSplitter)
        1    0.000    0.000    0.000    0.000 _iotools.py:230(NameValidator)
        1    0.000    0.000    0.000    0.000 _iotools.py:422(ConverterError)
        1    0.000    0.000    0.000    0.000 _iotools.py:430(ConverterLockError)
        1    0.000    0.000    0.000    0.000 _iotools.py:438(ConversionWarning)
        1    0.000    0.000    0.000    0.000 _iotools.py:451(StringConverter)
        1    0.000    0.000    0.004    0.004 _json.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _json.py:1030(FrameParser)
        1    0.000    0.000    0.000    0.000 _json.py:110(Writer)
        1    0.000    0.000    0.000    0.000 _json.py:165(SeriesWriter)
        1    0.000    0.000    0.000    0.000 _json.py:180(FrameWriter)
        1    0.000    0.000    0.000    0.000 _json.py:210(JSONTableWriter)
        1    0.000    0.000    0.000    0.000 _json.py:566(JsonReader)
        1    0.000    0.000    0.000    0.000 _json.py:762(Parser)
        1    0.000    0.000    0.000    0.000 _json.py:982(SeriesParser)
        1    0.000    0.000    0.022    0.022 _lxml.py:2(<module>)
        1    0.000    0.000    0.000    0.000 _lxml.py:308(LXMLTreeBuilder)
        1    0.000    0.000    0.000    0.000 _lxml.py:36(_invert)
        2    0.000    0.000    0.000    0.000 _lxml.py:38(<genexpr>)
        1    0.000    0.000    0.000    0.000 _lxml.py:40(LXMLTreeBuilderForXML)
        1    0.000    0.000    0.001    0.001 _markupbase.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _markupbase.py:23(ParserBase)
        1    0.000    0.000    0.001    0.001 _methods.py:1(<module>)
        4    0.000    0.000    0.000    0.000 _methods.py:38(_amax)
        2    0.000    0.000    0.000    0.000 _methods.py:46(_sum)
        4    0.000    0.000    0.000    0.000 _methods.py:54(_any)
       16    0.000    0.000    0.000    0.000 _methods.py:60(_all)
        1    0.000    0.000    0.000    0.000 _misc.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _misc.py:488(_Options)
        1    0.000    0.000    0.000    0.000 _misc.py:501(__init__)
        1    0.000    0.000    0.001    0.001 _mixins.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _mixins.py:30(NDArrayBackedExtensionArray)
        1    0.000    0.000    0.001    0.001 _normalize.py:4(<module>)
        1    0.000    0.000    0.000    0.000 _odfreader.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _odfreader.py:13(ODFReader)
        1    0.000    0.000    0.005    0.005 _odswriter.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _odswriter.py:13(ODSWriter)
        1    0.000    0.000    0.000    0.000 _openpyxl.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _openpyxl.py:17(OpenpyxlWriter)
        1    0.000    0.000    0.000    0.000 _openpyxl.py:458(OpenpyxlReader)
        1    0.000    0.000    0.000    0.000 _optional.py:1(<module>)
        2    0.000    0.000    0.000    0.000 _optional.py:49(get_version)
        5    0.000    0.000    0.215    0.043 _optional.py:60(import_optional_dependency)
        1    0.000    0.000    0.000    0.000 _parseaddr.py:203(AddrlistClass)
        1    0.000    0.000    0.002    0.002 _parseaddr.py:4(<module>)
        1    0.000    0.000    0.000    0.000 _parseaddr.py:504(AddressList)
        1    0.000    0.000    0.000    0.000 _parser.py:1377(_tzparser)
        1    0.000    0.000    0.000    0.000 _parser.py:1379(_result)
        1    0.000    0.000    0.000    0.000 _parser.py:1384(_attr)
        1    0.000    0.000    0.000    0.000 _parser.py:1595(ParserError)
        1    0.000    0.000    0.000    0.000 _parser.py:1607(UnknownTimezoneWarning)
        1    0.000    0.000    0.007    0.007 _parser.py:2(<module>)
        1    0.000    0.000    0.000    0.000 _parser.py:225(_resultbase)
        1    0.000    0.000    0.000    0.000 _parser.py:247(parserinfo)
        1    0.000    0.000    0.000    0.000 _parser.py:300(__init__)
        7    0.000    0.000    0.000    0.000 _parser.py:315(_convert)
        1    0.000    0.000    0.000    0.000 _parser.py:400(_ymd)
        1    0.000    0.000    0.000    0.000 _parser.py:574(parser)
        1    0.000    0.000    0.000    0.000 _parser.py:575(__init__)
        1    0.000    0.000    0.000    0.000 _parser.py:58(_timelex)
        1    0.000    0.000    0.000    0.000 _parser.py:667(_result)
        1    0.000    0.000    0.027    0.027 _pickle.py:1(<module>)
        1    0.000    0.000    0.003    0.003 _pocketfft.py:1(<module>)
        1    0.000    0.000    0.019    0.019 _policybase.py:1(<module>)
       10    0.000    0.000    0.000    0.000 _policybase.py:104(<genexpr>)
        1    0.000    0.000    0.000    0.000 _policybase.py:112(Policy)
        1    0.000    0.000    0.000    0.000 _policybase.py:18(_PolicyBase)
        1    0.000    0.000    0.000    0.000 _policybase.py:271(Compat32)
      280    0.000    0.000    0.000    0.000 _policybase.py:281(_sanitize_header)
      192    0.000    0.000    0.001    0.000 _policybase.py:293(header_source_parse)
      280    0.000    0.000    0.001    0.000 _policybase.py:311(header_fetch_parse)
        1    0.000    0.000    0.000    0.000 _policybase.py:41(__init__)
        6    0.000    0.000    0.000    0.000 _policybase.py:94(_append_doc)
        1    0.000    0.000    0.000    0.000 _policybase.py:99(_extend_docstrings)
        1    0.000    0.000    0.000    0.000 _polybase.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _polybase.py:18(ABCPolyBase)
        1    0.000    0.000    0.000    0.000 _print_versions.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _pytesttester.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _pytesttester.py:48(PytestTester)
        9    0.000    0.000    0.000    0.000 _pytesttester.py:78(__init__)
        1    0.000    0.000    0.000    0.000 _pyxlsb.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _pyxlsb.py:9(PyxlsbReader)
        1    0.000    0.000    0.000    0.000 _ranges.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _setmixin.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _setmixin.py:7(SetMixin)
        1    0.000    0.000    0.000    0.000 _string_helpers.py:1(<module>)
       49    0.000    0.000    0.000    0.000 _string_helpers.py:16(english_lower)
        1    0.000    0.000    0.000    0.000 _string_helpers.py:9(<listcomp>)
        1    0.000    0.000    0.000    0.000 _table_schema.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _tester.py:1(<module>)
        1    0.000    0.000    0.003    0.003 _testing.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _testing.py:120(set_testing_mode)
        1    0.000    0.000    0.000    0.000 _testing.py:2405(optional_args)
        1    0.000    0.000    0.000    0.000 _testing.py:2784(RNGContext)
        1    0.000    0.000    0.000    0.000 _testing.py:2910(SubclassedSeries)
        1    0.000    0.000    0.000    0.000 _testing.py:2922(SubclassedDataFrame)
        1    0.000    0.000    0.000    0.000 _testing.py:2934(SubclassedCategorical)
        1    0.000    0.000    0.006    0.006 _tokenizer.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _tokenizer.py:27(HTMLTokenizer)
        1    0.000    0.000    0.002    0.002 _type_aliases.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _type_aliases.py:130(_add_integer_aliases)
        1    0.000    0.000    0.000    0.000 _type_aliases.py:158(_set_up_aliases)
       30    0.000    0.000    0.000    0.000 _type_aliases.py:203(_add_array_type)
        1    0.000    0.000    0.000    0.000 _type_aliases.py:211(_set_array_types)
        1    0.000    0.000    0.000    0.000 _type_aliases.py:41(<setcomp>)
       16    0.000    0.000    0.000    0.000 _type_aliases.py:44(_bits_of)
       32    0.000    0.000    0.000    0.000 _type_aliases.py:46(<genexpr>)
       16    0.000    0.000    0.000    0.000 _type_aliases.py:58(bitname)
        1    0.000    0.000    0.000    0.000 _type_aliases.py:74(_add_types)
        6    0.000    0.000    0.000    0.000 _type_aliases.py:92(<genexpr>)
        1    0.000    0.000    0.000    0.000 _type_aliases.py:94(_add_aliases)
        1    0.000    0.000    0.004    0.004 _typing.py:1(<module>)
      288    0.000    0.000    0.000    0.000 _typing.py:49(<lambda>)
        1    0.000    0.000    0.000    0.000 _ufunc_config.py:1(<module>)
       40    0.000    0.000    0.000    0.000 _ufunc_config.py:131(geterr)
        1    0.000    0.000    0.000    0.000 _ufunc_config.py:29(<dictcomp>)
       40    0.000    0.000    0.000    0.000 _ufunc_config.py:32(seterr)
        1    0.000    0.000    0.000    0.000 _ufunc_config.py:359(_unspecified)
        1    0.000    0.000    0.000    0.000 _ufunc_config.py:366(errstate)
       20    0.000    0.000    0.000    0.000 _ufunc_config.py:425(__init__)
       20    0.000    0.000    0.000    0.000 _ufunc_config.py:429(__enter__)
       20    0.000    0.000    0.000    0.000 _ufunc_config.py:434(__exit__)
        1    0.000    0.000    0.000    0.000 _ufunc_config.py:440(_setdef)
        1    0.000    0.000    0.000    0.000 _util.py:1(<module>)
        4    0.000    0.000    0.000    0.000 _util.py:10(register_writer)
        1    0.000    0.000    0.016    0.016 _utils.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _utils.py:150(memoize)
        1    0.000    0.000    0.000    0.000 _utils.py:44(MethodDispatcher)
        1    0.000    0.000    0.000    0.000 _utils.py:76(BoundMethodDispatcher)
        1    0.000    0.000    0.000    0.000 _validators.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _version.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _version.py:14(NumpyVersion)
        1    0.000    0.000    0.000    0.000 _version.py:2(<module>)
        4    0.000    0.000    0.000    0.000 _version.py:20(get_versions)
        1    0.000    0.000    0.000    0.000 _version.py:4(<module>)
        2    0.000    0.000    0.000    0.000 _version.py:7(<module>)
        2    0.000    0.000    0.000    0.000 _weakrefset.py:37(__init__)
        1    0.000    0.000    0.000    0.000 _weakrefset.py:82(add)
        1    0.000    0.000    0.000    0.000 _xlrd.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _xlrd.py:11(XlrdReader)
        1    0.000    0.000    0.000    0.000 _xlsxwriter.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _xlsxwriter.py:10(_XlsxStyler)
        1    0.000    0.000    0.000    0.000 _xlsxwriter.py:162(XlsxWriter)
        1    0.000    0.000    0.000    0.000 _xlwt.py:1(<module>)
        1    0.000    0.000    0.000    0.000 _xlwt.py:13(XlwtWriter)
       93    0.000    0.000    0.004    0.000 abc.py:105(__new__)
       21    0.000    0.000    0.000    0.000 abc.py:110(register)
      743    0.000    0.000    0.002    0.000 abc.py:117(__instancecheck__)
   298/43    0.000    0.000    0.001    0.000 abc.py:121(__subclasscheck__)
      139    0.000    0.000    0.000    0.000 abc.py:7(abstractmethod)
        3    0.000    0.000    0.012    0.004 accessor.py:1(<module>)
        9    0.000    0.000    0.000    0.000 accessor.py:109(_map_and_wrap)
       10    0.000    0.000    0.000    0.000 accessor.py:111(delegate_names)
        1    0.000    0.000    0.004    0.004 accessor.py:119(StringMethods)
        1    0.000    0.000    0.000    0.000 accessor.py:13(DirNamesMixin)
       10    0.000    0.000    0.000    0.000 accessor.py:139(add_delegate_accessors)
        1    0.000    0.000    0.000    0.000 accessor.py:14(BaseAccessor)
        1    0.000    0.000    0.000    0.000 accessor.py:152(CachedAccessor)
        8    0.000    0.000    0.000    0.000 accessor.py:172(__init__)
        1    0.000    0.000    0.000    0.000 accessor.py:213(SparseFrameAccessor)
        1    0.000    0.000    0.000    0.000 accessor.py:25(SparseAccessor)
        1    0.000    0.000    0.000    0.000 accessor.py:42(PandasDelegate)
       50    0.000    0.000    0.000    0.000 accessor.py:42(forbid_nonstring_types)
       10    0.000    0.000    0.000    0.000 accessor.py:56(_add_delegate_accessors)
       62    0.000    0.000    0.000    0.000 accessor.py:76(_create_delegator_property)
       34    0.000    0.000    0.000    0.000 accessor.py:90(_create_delegator_method)
       50    0.000    0.000    0.001    0.000 accessor.py:90(_forbid_nonstring_types)
        1    0.000    0.000    0.000    0.000 accessors.py:1(<module>)
        1    0.000    0.000    0.000    0.000 accessors.py:128(DatetimeProperties)
        1    0.000    0.000    0.000    0.000 accessors.py:288(TimedeltaProperties)
        1    0.000    0.000    0.000    0.000 accessors.py:30(Properties)
        1    0.000    0.000    0.000    0.000 accessors.py:395(PeriodProperties)
        1    0.000    0.000    0.000    0.000 accessors.py:462(CombinedDatetimelikeProperties)
       12    0.000    0.000    0.000    0.000 adapters.py:113(__init__)
       12    0.000    0.000    0.000    0.000 adapters.py:146(init_poolmanager)
       10    0.000    0.000    0.005    0.001 adapters.py:203(cert_verify)
       10    0.000    0.000    0.005    0.001 adapters.py:255(build_response)
       10    0.000    0.000    0.005    0.000 adapters.py:292(get_connection)
        1    0.000    0.000    0.003    0.003 adapters.py:3(<module>)
       12    0.000    0.000    0.018    0.002 adapters.py:319(close)
       10    0.000    0.000    0.001    0.000 adapters.py:329(request_url)
       10    0.000    0.000    0.000    0.000 adapters.py:358(add_headers)
       10    0.000    0.000    4.775    0.477 adapters.py:394(send)
        1    0.000    0.000    0.000    0.000 adapters.py:55(BaseAdapter)
       12    0.000    0.000    0.000    0.000 adapters.py:58(__init__)
        1    0.000    0.000    0.000    0.000 adapters.py:84(HTTPAdapter)
        1    0.000    0.000    0.043    0.043 aggregation.py:1(<module>)
        1    0.000    0.000    0.014    0.014 algorithms.py:1(<module>)
        1    0.000    0.000    0.000    0.000 algorithms.py:1170(SelectN)
        1    0.000    0.000    0.000    0.000 algorithms.py:1199(SelectNSeries)
        1    0.000    0.000    0.000    0.000 algorithms.py:1263(SelectNFrame)
       12    0.000    0.000    0.000    0.000 algorithms.py:1373(_view_wrapper)
        1    0.000    0.000    0.001    0.001 align.py:1(<module>)
        1    0.000    0.000    0.000    0.000 align.py:55(_filter_special_cases)
        3    0.000    0.000    0.099    0.033 api.py:1(<module>)
        6    0.000    0.000    6.508    1.085 api.py:16(request)
        5    0.000    0.000    0.343    0.069 api.py:3(<module>)
        6    0.000    0.000    6.509    1.085 api.py:64(get)
        1    0.000    0.000    0.006    0.006 array.py:1(<module>)
        1    0.000    0.000    0.000    0.000 array.py:199(SparseArray)
        1    0.000    0.000    0.004    0.004 array_ops.py:1(<module>)
        4    0.000    0.000    0.006    0.001 array_ops.py:118(_na_arithmetic_op)
        4    0.000    0.000    0.006    0.002 array_ops.py:194(comparison_op)
       14    0.000    0.000    0.000    0.000 array_ops.py:362(get_array_op)
        1    0.000    0.000    0.000    0.000 arraylike.py:1(<module>)
        1    0.000    0.000    0.000    0.000 arraylike.py:20(OpsMixin)
        4    0.000    0.000    0.008    0.002 arraylike.py:31(__ne__)
        1    0.000    0.000    0.000    0.000 arraypad.py:1(<module>)
        1    0.000    0.000    0.001    0.001 arrayprint.py:1(<module>)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1184(IntegerFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1197(BoolFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1207(ComplexFloatingFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1240(_TimelikeFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1266(DatetimeFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1298(TimedeltaFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1303(SubArrayFormat)
        1    0.000    0.000    0.000    0.000 arrayprint.py:1313(StructuredVoidFormat)
       15    0.000    0.000    0.000    0.000 arrayprint.py:1527(_guarded_repr_or_str)
       15    0.000    0.000    0.000    0.000 arrayprint.py:1534(_array_str_implementation)
        2    0.000    0.000    0.000    0.000 arrayprint.py:455(_recursive_guard)
        2    0.000    0.000    0.000    0.000 arrayprint.py:465(decorating_function)
       15    0.000    0.000    0.000    0.000 arrayprint.py:468(wrapper)
        1    0.000    0.000    0.000    0.000 arrayprint.py:867(FloatingFormat)
        1    0.000    0.000    0.001    0.001 arraysetops.py:1(<module>)
        1    0.000    0.000    0.000    0.000 arrayterator.py:1(<module>)
        1    0.000    0.000    0.000    0.000 arrayterator.py:16(Arrayterator)
        1    0.000    0.000    0.000    0.000 auth.py:100(HTTPProxyAuth)
        1    0.000    0.000    0.000    0.000 auth.py:108(HTTPDigestAuth)
        1    0.000    0.000    0.000    0.000 auth.py:3(<module>)
        1    0.000    0.000    0.000    0.000 auth.py:72(AuthBase)
        1    0.000    0.000    0.000    0.000 auth.py:79(HTTPBasicAuth)
        7    0.001    0.000    0.042    0.006 base.py:1(<module>)
        1    0.000    0.000    0.000    0.000 base.py:107(NoNewAttributesMixin)
        1    0.000    0.000    0.000    0.000 base.py:122(ActiveFormattingElements)
        1    0.000    0.000    0.000    0.000 base.py:1229(ExtensionOpsMixin)
       12    0.000    0.000    0.000    0.000 base.py:1232(name)
       24    0.000    0.000    0.000    0.000 base.py:1239(name)
        1    0.000    0.000    0.000    0.000 base.py:1290(ExtensionScalarOpsMixin)
        1    0.000    0.000    0.000    0.000 base.py:141(DataError)
        1    0.000    0.000    0.000    0.000 base.py:145(SpecificationError)
        1    0.000    0.000    0.000    0.000 base.py:146(TreeBuilder)
        1    0.000    0.000    0.000    0.000 base.py:149(SelectionMixin)
        1    0.000    0.000    0.001    0.001 base.py:150(Index)
        1    0.000    0.000    0.001    0.001 base.py:18(ExtensionDtype)
        1    0.000    0.000    0.000    0.000 base.py:18(ShallowMixin)
        1    0.000    0.000    0.001    0.001 base.py:22(<module>)
        1    0.000    0.000    0.000    0.000 base.py:23(Node)
   116/44    0.002    0.000    0.013    0.000 base.py:250(__new__)
     1064    0.001    0.000    0.004    0.000 base.py:254(is_dtype)
        4    0.002    0.001    7.040    1.760 base.py:274(_get_fundamentals)
        1    0.000    0.000    0.000    0.000 base.py:34(GotItemMixin)
        1    0.000    0.000    0.000    0.000 base.py:347(IndexOpsMixin)
       17    0.000    0.000    0.000    0.000 base.py:355(register_extension_dtype)
       40    0.000    0.000    0.000    0.000 base.py:381(<genexpr>)
        1    0.000    0.000    0.000    0.000 base.py:381(Registry)
        1    0.000    0.000    0.000    0.000 base.py:397(__init__)
        4    0.000    0.000    0.000    0.000 base.py:397(ndim)
       17    0.000    0.000    0.000    0.000 base.py:400(register)
       30    0.000    0.000    0.000    0.000 base.py:4071(_values)
        2    0.000    0.000    0.000    0.000 base.py:4097(_get_engine_target)
      960    0.001    0.000    0.002    0.000 base.py:411(find)
       48    0.000    0.000    0.000    0.000 base.py:425(_simple_new)
      108    0.000    0.000    0.001    0.000 base.py:4280(__getitem__)
       24    0.000    0.000    0.001    0.000 base.py:4394(equals)
        1    0.000    0.000    0.000    0.000 base.py:44(TickerBase)
        4    0.000    0.000    0.001    0.000 base.py:4473(identical)
        8    0.000    0.000    0.000    0.000 base.py:4486(<genexpr>)
        2    0.000    0.000    0.028    0.014 base.py:45(__init__)
        4    0.000    0.000    7.041    1.760 base.py:498(get_info)
       24    0.000    0.000    0.000    0.000 base.py:532(is_)
       56    0.000    0.000    0.000    0.000 base.py:563(_reset_identity)
        1    0.000    0.000    0.000    0.000 base.py:57(ExtensionArray)
        2    0.000    0.000    0.000    0.000 base.py:574(_engine)
        2    0.000    0.000    0.000    0.000 base.py:581(<lambda>)
      120    0.000    0.000    0.009    0.000 base.py:5837(ensure_index)
        4    0.000    0.000    0.000    0.000 base.py:5948(default_index)
      180    0.000    0.000    0.001    0.000 base.py:5954(maybe_extract_name)
       36    0.000    0.000    0.001    0.000 base.py:5970(_maybe_cast_with_dtype)
        1    0.000    0.000    0.000    0.000 base.py:60(PandasObject)
      198    0.000    0.000    0.000    0.000 base.py:600(__len__)
       36    0.000    0.000    0.002    0.000 base.py:6024(_maybe_cast_data_without_dtype)
        4    0.000    0.000    0.000    0.000 base.py:6095(_try_convert_to_int_array)
       12    0.000    0.000    0.000    0.000 base.py:623(dtype)
       12    0.000    0.000    0.000    0.000 base.py:796(__iter__)
        1    0.000    0.000    0.000    0.000 base.py:9(BaseStringArrayMethods)
        1    0.000    0.000    0.001    0.001 base64.py:3(<module>)
        1    0.000    0.000    0.000    0.000 base64mime.py:5(<module>)
        1    0.000    0.000    0.000    0.000 big5freq.py:43(<module>)
        1    0.000    0.000    0.000    0.000 big5prober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 big5prober.py:34(Big5Prober)
        1    0.000    0.000    0.000    0.000 bisect.py:1(<module>)
        1    0.000    0.000    0.009    0.009 blocks.py:1(<module>)
       42    0.000    0.000    0.001    0.000 blocks.py:127(__init__)
       34    0.000    0.000    0.000    0.000 blocks.py:147(_maybe_coerce_values)
       42    0.000    0.000    0.000    0.000 blocks.py:161(_check_ndim)
        1    0.000    0.000    0.000    0.000 blocks.py:1673(ExtensionBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2057(ObjectValuesExtensionBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2079(NumericBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2085(FloatBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2136(ComplexBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2149(IntBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2167(DatetimeLikeBlockMixin)
        1    0.000    0.000    0.000    0.000 blocks.py:2241(DatetimeBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2328(DatetimeTZBlock)
       36    0.000    0.000    0.000    0.000 blocks.py:233(internal_values)
        8    0.000    0.000    0.000    0.000 blocks.py:239(array_values)
        1    0.000    0.000    0.000    0.000 blocks.py:2460(TimeDeltaBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2507(BoolBlock)
        1    0.000    0.000    0.000    0.000 blocks.py:2519(ObjectBlock)
        8    0.000    0.000    0.000    0.000 blocks.py:2524(_maybe_coerce_values)
        1    0.000    0.000    0.000    0.000 blocks.py:2647(CategoricalBlock)
       64    0.000    0.000    0.000    0.000 blocks.py:265(mgr_locs)
      142    0.001    0.000    0.005    0.000 blocks.py:2681(get_block_type)
       42    0.000    0.000    0.001    0.000 blocks.py:269(mgr_locs)
       38    0.000    0.000    0.003    0.000 blocks.py:2730(make_block)
        4    0.000    0.000    0.000    0.000 blocks.py:288(make_block_same_class)
        4    0.000    0.000    0.000    0.000 blocks.py:319(_slice)
       22    0.000    0.000    0.000    0.000 blocks.py:343(shape)
       50    0.000    0.000    0.000    0.000 blocks.py:347(dtype)
        1    0.000    0.000    0.000    0.000 blocks.py:89(Block)
        1    0.000    0.000    0.008    0.008 boolean.py:1(<module>)
        1    0.000    0.000    0.000    0.000 boolean.py:205(BooleanArray)
        1    0.000    0.000    0.000    0.000 boolean.py:32(BooleanDtype)
        1    0.000    0.000    0.004    0.004 brotli.py:6(<module>)
        1    0.000    0.000    0.004    0.004 bz2.py:1(<module>)
        1    0.000    0.000    0.000    0.000 bz2.py:27(BZ2File)
        1    0.000    0.000    0.000    0.000 calendar.py:1(<module>)
        1    0.000    0.000    0.000    0.000 calendar.py:148(Calendar)
        1    0.000    0.000    0.000    0.000 calendar.py:154(__init__)
        1    0.000    0.000    0.000    0.000 calendar.py:160(setfirstweekday)
        1    0.000    0.000    0.000    0.000 calendar.py:24(IllegalMonthError)
        1    0.000    0.000    0.000    0.000 calendar.py:293(TextCalendar)
        1    0.000    0.000    0.000    0.000 calendar.py:31(IllegalWeekdayError)
        1    0.000    0.000    0.000    0.000 calendar.py:410(HTMLCalendar)
        1    0.000    0.000    0.000    0.000 calendar.py:50(_localized_month)
        1    0.000    0.000    0.000    0.000 calendar.py:52(<listcomp>)
        2    0.000    0.000    0.000    0.000 calendar.py:53(<lambda>)
        1    0.000    0.000    0.000    0.000 calendar.py:546(different_locale)
        2    0.000    0.000    0.000    0.000 calendar.py:55(__init__)
        1    0.000    0.000    0.000    0.000 calendar.py:558(LocaleTextCalendar)
       26    0.000    0.000    0.000    0.000 calendar.py:58(__getitem__)
        1    0.000    0.000    0.000    0.000 calendar.py:589(LocaleHTMLCalendar)
       28    0.000    0.000    0.000    0.000 calendar.py:655(timegm)
        1    0.000    0.000    0.000    0.000 calendar.py:69(_localized_day)
        1    0.000    0.000    0.000    0.000 calendar.py:72(<listcomp>)
        2    0.000    0.000    0.000    0.000 calendar.py:74(__init__)
       14    0.000    0.000    0.000    0.000 calendar.py:77(__getitem__)
        1    0.000    0.000    0.002    0.002 cast.py:1(<module>)
        4    0.000    0.000    0.000    0.000 cast.py:109(maybe_convert_platform)
       16    0.000    0.000    0.000    0.000 cast.py:1257(maybe_castable)
      106    0.000    0.000    0.002    0.000 cast.py:1273(maybe_infer_to_datetimelike)
      114    0.001    0.000    0.003    0.000 cast.py:1379(maybe_cast_to_datetime)
       96    0.000    0.000    0.001    0.000 cast.py:1572(construct_1d_arraylike_from_scalar)
       48    0.000    0.000    0.001    0.000 cast.py:1617(construct_1d_object_array_from_listlike)
      102    0.000    0.000    0.000    0.000 cast.py:1642(construct_1d_ndarray_preserving_na)
        4    0.000    0.000    0.000    0.000 cast.py:1677(maybe_cast_to_integer_array)
       96    0.000    0.000    0.001    0.000 cast.py:743(infer_dtype_from_scalar)
        2    0.000    0.000    0.026    0.013 categorical.py:1(<module>)
        1    0.000    0.000    0.000    0.000 categorical.py:187(Categorical)
        1    0.000    0.000    0.000    0.000 categorical.py:2334(CategoricalAccessor)
        6    0.000    0.000    0.000    0.000 categorical.py:63(_cat_compare_op)
        1    0.000    0.000    0.002    0.002 category.py:1(<module>)
        1    0.000    0.000    0.001    0.001 category.py:33(CategoricalIndex)
        1    0.000    0.000    0.007    0.007 certs.py:4(<module>)
        1    0.000    0.000    0.000    0.000 chainmap.py:1(<module>)
        1    0.000    0.000    0.000    0.000 chainmap.py:7(DeepChainMap)
        1    0.000    0.000    0.000    0.000 chardistribution.py:113(EUCTWDistributionAnalysis)
        1    0.000    0.000    0.000    0.000 chardistribution.py:132(EUCKRDistributionAnalysis)
        1    0.000    0.000    0.000    0.000 chardistribution.py:151(GB2312DistributionAnalysis)
        1    0.000    0.000    0.000    0.000 chardistribution.py:170(Big5DistributionAnalysis)
        1    0.000    0.000    0.000    0.000 chardistribution.py:192(SJISDistributionAnalysis)
        1    0.000    0.000    0.000    0.000 chardistribution.py:217(EUCJPDistributionAnalysis)
        1    0.000    0.000    0.004    0.004 chardistribution.py:28(<module>)
        1    0.000    0.000    0.000    0.000 chardistribution.py:40(CharDistributionAnalysis)
        1    0.000    0.000    0.000    0.000 charset.py:167(Charset)
        2    0.000    0.000    0.000    0.000 charset.py:211(__init__)
        1    0.000    0.000    0.002    0.002 charset.py:5(<module>)
        1    0.000    0.000    0.002    0.002 charsetgroupprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 charsetgroupprober.py:32(CharSetGroupProber)
        1    0.000    0.000    0.000    0.000 charsetprober.py:29(<module>)
        1    0.000    0.000    0.000    0.000 charsetprober.py:35(CharSetProber)
        1    0.000    0.000    0.000    0.000 chebyshev.py:1(<module>)
        1    0.000    0.000    0.000    0.000 chebyshev.py:1993(Chebyshev)
        1    0.000    0.000    0.002    0.002 check.py:1(<module>)
        1    0.000    0.000    0.033    0.033 client.py:1(<module>)
       10    0.000    0.000    0.002    0.000 client.py:1003(_send_output)
       10    0.000    0.000    0.001    0.000 client.py:1057(putrequest)
        1    0.000    0.000    0.000    0.000 client.py:106(<dictcomp>)
       10    0.000    0.000    0.000    0.000 client.py:1184(_encode_request)
       10    0.000    0.000    0.000    0.000 client.py:1188(_validate_method)
       10    0.000    0.000    0.000    0.000 client.py:1197(_validate_path)
        6    0.000    0.000    0.000    0.000 client.py:1205(_validate_host)
       54    0.000    0.000    0.001    0.000 client.py:1213(putheader)
       10    0.000    0.000    0.002    0.000 client.py:1241(endheaders)
       10    0.000    0.000    0.004    0.000 client.py:1254(request)
       10    0.000    0.000    0.004    0.000 client.py:1259(_send_request)
       54    0.000    0.000    0.000    0.000 client.py:1261(<genexpr>)
       10    0.000    0.000    4.313    0.431 client.py:1305(getresponse)
        1    0.000    0.000    0.000    0.000 client.py:1373(HTTPSConnection)
        1    0.000    0.000    0.000    0.000 client.py:1431(HTTPException)
        1    0.000    0.000    0.000    0.000 client.py:1436(NotConnected)
        1    0.000    0.000    0.000    0.000 client.py:1439(InvalidURL)
        1    0.000    0.000    0.000    0.000 client.py:1442(UnknownProtocol)
        1    0.000    0.000    0.000    0.000 client.py:1447(UnknownTransferEncoding)
        1    0.000    0.000    0.000    0.000 client.py:1450(UnimplementedFileMode)
        1    0.000    0.000    0.000    0.000 client.py:1453(IncompleteRead)
        1    0.000    0.000    0.000    0.000 client.py:1467(ImproperConnectionState)
        1    0.000    0.000    0.000    0.000 client.py:1470(CannotSendRequest)
        1    0.000    0.000    0.000    0.000 client.py:1473(CannotSendHeader)
        1    0.000    0.000    0.000    0.000 client.py:1476(ResponseNotReady)
        1    0.000    0.000    0.000    0.000 client.py:1479(BadStatusLine)
        1    0.000    0.000    0.000    0.000 client.py:1486(LineTooLong)
        1    0.000    0.000    0.000    0.000 client.py:1491(RemoteDisconnected)
        1    0.000    0.000    0.000    0.000 client.py:174(HTTPMessage)
       10    0.000    0.000    0.001    0.000 client.py:204(_read_headers)
       10    0.000    0.000    0.005    0.000 client.py:222(parse_headers)
        1    0.000    0.000    0.000    0.000 client.py:237(HTTPResponse)
       10    0.000    0.000    0.000    0.000 client.py:246(__init__)
       10    0.000    0.000    4.307    0.431 client.py:276(_read_status)
       10    0.000    0.000    4.312    0.431 client.py:309(begin)
       10    0.000    0.000    0.000    0.000 client.py:381(_check_close)
       10    0.000    0.000    0.000    0.000 client.py:410(_close_conn)
       16    0.000    0.000    0.000    0.000 client.py:415(close)
       10    0.000    0.000    0.000    0.000 client.py:427(flush)
       32    0.000    0.000    0.000    0.000 client.py:438(isclosed)
        4    0.000    0.000    0.000    0.000 client.py:448(read)
        4    0.000    0.000    0.000    0.000 client.py:480(readinto)
      319    0.001    0.000    1.555    0.005 client.py:606(_safe_read)
        1    0.000    0.000    0.000    0.000 client.py:772(HTTPConnection)
       10    0.000    0.000    0.000    0.000 client.py:788(_get_content_length)
        6    0.000    0.000    0.000    0.000 client.py:820(__init__)
        6    0.000    0.000    0.000    0.000 client.py:866(_get_hostport)
        6    0.000    0.000    0.005    0.001 client.py:930(close)
       10    0.000    0.000    0.002    0.000 client.py:944(send)
       64    0.000    0.000    0.000    0.000 client.py:982(_output)
        1    0.000    0.000    0.000    0.000 clipboards.py:1(<module>)
        1    0.000    0.000    0.000    0.000 codecs.py:1015(getwriter)
        1    0.000    0.000    0.000    0.000 codecs.py:260(__init__)
        4    0.000    0.000    0.000    0.000 codecs.py:94(__new__)
        1    0.000    0.000    0.000    0.000 codingstatemachine.py:28(<module>)
        1    0.000    0.000    0.000    0.000 codingstatemachine.py:33(CodingStateMachine)
        6    0.000    0.000    0.005    0.001 common.py:1(<module>)
       16    0.000    0.000    0.000    0.000 common.py:1032(is_datetime_or_timedelta_dtype)
        4    0.000    0.000    0.000    0.000 common.py:1071(is_numeric_v_string_like)
        4    0.000    0.000    0.023    0.006 common.py:108(is_url)
        8    0.000    0.000    0.000    0.000 common.py:1130(is_datetimelike_v_numeric)
       54    0.000    0.000    0.000    0.000 common.py:1187(needs_i8_conversion)
        4    0.000    0.000    0.000    0.000 common.py:1234(is_numeric_dtype)
        2    0.000    0.000    0.000    0.000 common.py:126(_expand_user)
        8    0.000    0.000    0.000    0.000 common.py:1276(is_string_like_dtype)
      104    0.000    0.000    0.000    0.000 common.py:129(cast_scalar_indexer)
       52    0.000    0.000    0.000    0.000 common.py:13(unpack_zerodim_and_defer)
        8    0.000    0.000    0.000    0.000 common.py:1304(<lambda>)
      108    0.000    0.000    0.000    0.000 common.py:1307(is_float_dtype)
       92    0.000    0.000    0.001    0.000 common.py:1341(is_bool_dtype)
        6    0.000    0.000    0.000    0.000 common.py:145(validate_header_arg)
      938    0.001    0.000    0.003    0.000 common.py:1470(is_extension_array_dtype)
        8    0.000    0.000    0.000    0.000 common.py:1519(is_complex_dtype)
        2    0.000    0.000    0.000    0.000 common.py:154(stringify_path)
      154    0.000    0.000    0.000    0.000 common.py:1551(_is_dtype)
       16    0.000    0.000    0.000    0.000 common.py:157(ensure_python_int)
      242    0.000    0.000    0.000    0.000 common.py:1575(get_dtype)
     1046    0.001    0.000    0.002    0.000 common.py:1610(_is_dtype_type)
        8    0.000    0.000    0.000    0.000 common.py:170(all_none)
       16    0.000    0.000    0.000    0.000 common.py:174(<genexpr>)
       40    0.000    0.000    0.000    0.000 common.py:1743(validate_all_hashable)
       80    0.000    0.000    0.000    0.000 common.py:1762(<genexpr>)
      264    0.000    0.000    0.001    0.000 common.py:1769(pandas_dtype)
      728    0.000    0.000    0.000    0.000 common.py:185(classes)
      728    0.000    0.000    0.000    0.000 common.py:187(<lambda>)
      318    0.000    0.000    0.000    0.000 common.py:190(classes_and_not_datetimelike)
      318    0.000    0.000    0.000    0.000 common.py:195(<lambda>)
      104    0.000    0.000    0.001    0.000 common.py:198(asarray_tuplesafe)
      476    0.001    0.000    0.002    0.000 common.py:201(is_object_dtype)
      142    0.000    0.000    0.001    0.000 common.py:231(is_sparse)
      104    0.000    0.000    0.001    0.000 common.py:254(maybe_iterable_to_list)
       52    0.000    0.000    0.000    0.000 common.py:26(wrapper)
        4    0.000    0.000    0.000    0.000 common.py:317(apply_if_callable)
        1    0.000    0.000    0.000    0.000 common.py:32(SettingWithCopyError)
       52    0.000    0.000    0.000    0.000 common.py:32(_unpack_zerodim_and_defer)
       16    0.000    0.000    0.000    0.000 common.py:355(is_datetime64_dtype)
        1    0.000    0.000    0.000    0.000 common.py:36(SettingWithCopyWarning)
      262    0.000    0.000    0.001    0.000 common.py:388(is_datetime64tz_dtype)
        1    0.000    0.000    0.000    0.000 common.py:42(IOArgs)
      240    0.000    0.000    0.001    0.000 common.py:429(is_timedelta64_dtype)
        1    0.000    0.000    0.000    0.000 common.py:46(<setcomp>)
      394    0.000    0.000    0.002    0.000 common.py:463(is_period_dtype)
      378    0.000    0.000    0.002    0.000 common.py:499(is_interval_dtype)
        4    0.000    0.000    0.008    0.002 common.py:50(new_method)
      378    0.001    0.000    0.002    0.000 common.py:537(is_categorical_dtype)
      146    0.000    0.000    0.001    0.000 common.py:573(is_string_dtype)
        1    0.000    0.000    0.000    0.000 common.py:60(IOHandles)
      118    0.000    0.000    0.000    0.000 common.py:602(condition)
        4    0.000    0.000    0.000    0.000 common.py:605(is_excluded_dtype)
       16    0.000    0.000    0.000    0.000 common.py:610(<genexpr>)
       12    0.000    0.000    0.000    0.000 common.py:615(is_dtype_equal)
        4    0.000    0.000    0.000    0.000 common.py:70(get_op_result_name)
        1    0.000    0.000    0.000    0.000 common.py:701(_BytesZipFile)
      158    0.000    0.000    0.001    0.000 common.py:703(is_integer_dtype)
        8    0.000    0.000    0.000    0.000 common.py:75(is_bool_indexer)
        1    0.000    0.000    0.000    0.000 common.py:754(_MMapWrapper)
       84    0.000    0.000    0.000    0.000 common.py:757(is_signed_integer_dtype)
       72    0.000    0.000    0.000    0.000 common.py:813(is_unsigned_integer_dtype)
      232    0.000    0.000    0.000    0.000 common.py:912(is_datetime64_any_dtype)
        1    0.000    0.000    0.029    0.029 compat.py:3(<module>)
        3    0.000    0.000    0.018    0.006 concat.py:1(<module>)
        1    0.000    0.000    0.000    0.000 concat.py:178(JoinUnit)
        1    0.000    0.000    0.000    0.000 concat.py:301(_Concatenator)
        1    0.000    0.000    0.001    0.001 config.py:1(<module>)
        2    0.000    0.000    0.000    0.000 config.py:104(_get_option)
        1    0.000    0.000    0.000    0.000 config.py:181(DictWrapper)
        1    0.000    0.000    0.000    0.000 config.py:184(__init__)
        1    0.000    0.000    0.000    0.000 config.py:227(CallableDynamicDoc)
        4    0.000    0.000    0.000    0.000 config.py:228(__init__)
        2    0.000    0.000    0.000    0.000 config.py:232(__call__)
        1    0.000    0.000    0.000    0.000 config.py:382(option_context)
       56    0.001    0.000    0.001    0.000 config.py:414(register_option)
        2    0.000    0.000    0.000    0.000 config.py:489(deprecate_option)
        2    0.000    0.000    0.000    0.000 config.py:537(_select_options)
        2    0.000    0.000    0.000    0.000 config.py:555(_get_root)
        4    0.000    0.000    0.000    0.000 config.py:569(_get_deprecated_option)
        2    0.000    0.000    0.000    0.000 config.py:596(_translate_key)
        2    0.000    0.000    0.000    0.000 config.py:608(_warn_if_deprecated)
       40    0.000    0.000    0.000    0.000 config.py:697(config_prefix)
       60    0.000    0.000    0.000    0.000 config.py:727(wrap)
       56    0.000    0.000    0.001    0.000 config.py:728(inner)
        1    0.000    0.000    0.000    0.000 config.py:75(OptionError)
        4    0.000    0.000    0.000    0.000 config.py:750(is_type_factory)
       22    0.000    0.000    0.000    0.000 config.py:764(inner)
        5    0.000    0.000    0.000    0.000 config.py:771(is_instance_factory)
        7    0.000    0.000    0.000    0.000 config.py:790(inner)
        8    0.000    0.000    0.000    0.000 config.py:797(is_one_of_factory)
        8    0.000    0.000    0.000    0.000 config.py:799(<listcomp>)
        8    0.000    0.000    0.000    0.000 config.py:800(<listcomp>)
        8    0.000    0.000    0.000    0.000 config.py:802(inner)
        3    0.000    0.000    0.000    0.000 config.py:816(is_nonnegative_int)
        2    0.000    0.000    0.000    0.000 config.py:86(_get_single_key)
        1    0.000    0.000    0.002    0.002 config_init.py:1(<module>)
        1    0.000    0.000    0.000    0.000 config_init.py:323(is_terminal)
        1    0.000    0.000    0.000    0.000 config_init.py:646(register_plotting_backend_cb)
        2    0.000    0.000    0.068    0.034 connection.py:1(<module>)
        6    0.000    0.000    0.000    0.000 connection.py:101(_set_socket_options)
        6    0.000    0.000    0.000    0.000 connection.py:109(allowed_gai_family)
        6    0.000    0.000    0.000    0.000 connection.py:110(__init__)
        4    0.000    0.000    0.000    0.000 connection.py:12(is_connection_dropped)
        1    0.000    0.000    0.002    0.002 connection.py:120(_has_ipv6)
       22    0.000    0.000    0.000    0.000 connection.py:127(host)
        6    0.000    0.000    0.000    0.000 connection.py:146(host)
        6    0.000    0.000    0.153    0.026 connection.py:156(_new_conn)
        6    0.000    0.000    0.000    0.000 connection.py:187(_is_using_tunnel)
       10    0.000    0.000    0.001    0.000 connection.py:203(putrequest)
       54    0.000    0.000    0.001    0.000 connection.py:216(putheader)
      108    0.000    0.000    0.000    0.000 connection.py:218(<genexpr>)
       10    0.000    0.000    0.004    0.000 connection.py:226(request)
       20    0.000    0.000    0.000    0.000 connection.py:232(<genexpr>)
        1    0.000    0.000    0.000    0.000 connection.py:276(HTTPSConnection)
        6    0.000    0.000    0.000    0.000 connection.py:292(__init__)
        6    0.000    0.000    0.000    0.000 connection.py:318(set_cert)
        6    0.000    0.000    0.435    0.073 connection.py:351(connect)
        6    0.000    0.000    0.153    0.025 connection.py:38(create_connection)
        6    0.000    0.000    0.000    0.000 connection.py:510(_match_hostname)
        1    0.000    0.000    0.000    0.000 connection.py:529(DummyConnection)
        1    0.000    0.000    0.000    0.000 connection.py:75(HTTPConnection)
        1    0.000    0.000    0.075    0.075 connectionpool.py:1(<module>)
       10    0.000    0.000    0.436    0.044 connectionpool.py:1002(_validate_conn)
        1    0.000    0.000    0.000    0.000 connectionpool.py:104(HTTPConnectionPool)
        6    0.000    0.000    0.000    0.000 connectionpool.py:1052(_normalize_host)
        6    0.000    0.000    0.001    0.000 connectionpool.py:168(__init__)
       10    0.000    0.000    0.001    0.000 connectionpool.py:243(_get_conn)
       10    0.000    0.000    0.000    0.000 connectionpool.py:282(_put_conn)
       10    0.000    0.000    0.000    0.000 connectionpool.py:310(_validate_conn)
       20    0.000    0.000    0.000    0.000 connectionpool.py:320(_get_timeout)
       10    0.000    0.000    4.753    0.475 connectionpool.py:357(_make_request)
        6    0.012    0.002    0.018    0.003 connectionpool.py:479(close)
       10    0.001    0.000    4.758    0.476 connectionpool.py:518(urlopen)
        1    0.000    0.000    0.000    0.000 connectionpool.py:60(ConnectionPool)
        6    0.000    0.000    0.000    0.000 connectionpool.py:74(__init__)
        1    0.000    0.000    0.000    0.000 connectionpool.py:865(HTTPSConnectionPool)
        6    0.000    0.000    0.001    0.000 connectionpool.py:882(__init__)
        6    0.000    0.000    0.000    0.000 connectionpool.py:931(_prepare_conn)
        6    0.000    0.000    0.000    0.000 connectionpool.py:966(_new_conn)
        1    0.000    0.000    0.000    0.000 console.py:1(<module>)
        1    0.000    0.000    0.000    0.000 constants.py:1(<module>)
        1    0.000    0.000    0.000    0.000 constants.py:2936(<dictcomp>)
        1    0.000    0.000    0.000    0.000 constants.py:2940(DataLossWarning)
        1    0.000    0.000    0.000    0.000 constants.py:2945(_ReparseException)
        1    0.000    0.000    0.000    0.000 constants.py:522(<dictcomp>)
        1    0.000    0.000    0.000    0.000 constants.py:547(<dictcomp>)
        2    0.000    0.000    0.002    0.001 construction.py:1(<module>)
       20    0.000    0.000    0.040    0.002 construction.py:241(init_dict)
       16    0.000    0.000    0.000    0.000 construction.py:278(<listcomp>)
       16    0.000    0.000    0.000    0.000 construction.py:281(<listcomp>)
       16    0.000    0.000    0.001    0.000 construction.py:284(<listcomp>)
       20    0.000    0.000    0.009    0.000 construction.py:333(_homogenize)
      136    0.000    0.000    0.001    0.000 construction.py:354(extract_array)
        4    0.000    0.000    0.000    0.000 construction.py:405(ensure_wrapped_if_datetimelike)
      120    0.001    0.000    0.011    0.000 construction.py:423(sanitize_array)
      116    0.000    0.000    0.004    0.000 construction.py:554(_try_cast)
       28    0.000    0.000    0.000    0.000 construction.py:612(is_empty_data)
       20    0.000    0.000    0.025    0.001 construction.py:62(arrays_to_mgr)
        8    0.000    0.000    0.006    0.001 construction.py:632(create_series_with_explicit_dtype)
        1    0.000    0.000    0.003    0.003 context.py:1(<module>)
        1    0.000    0.000    0.000    0.000 context.py:14(ProcessError)
        1    0.000    0.000    0.000    0.000 context.py:17(BufferTooShort)
        1    0.000    0.000    0.000    0.000 context.py:20(TimeoutError)
        1    0.000    0.000    0.000    0.000 context.py:203(reducer)
        1    0.000    0.000    0.000    0.000 context.py:220(Process)
        1    0.000    0.000    0.000    0.000 context.py:226(DefaultContext)
        1    0.000    0.000    0.000    0.000 context.py:229(__init__)
        1    0.000    0.000    0.000    0.000 context.py:23(AuthenticationError)
        1    0.000    0.000    0.000    0.000 context.py:30(BaseContext)
        1    0.000    0.000    0.000    0.000 context.py:322(SpawnProcess)
        1    0.000    0.000    0.000    0.000 context.py:329(SpawnContext)
        2    0.000    0.000    0.000    0.000 context.py:41(cpu_count)
       45    0.000    0.000    0.001    0.000 contextlib.py:112(__enter__)
       44    0.000    0.000    0.001    0.000 contextlib.py:121(__exit__)
       27    0.000    0.000    0.000    0.000 contextlib.py:215(contextmanager)
       45    0.000    0.000    0.000    0.000 contextlib.py:242(helper)
        1    0.000    0.000    0.000    0.000 contextlib.py:298(__init__)
        1    0.000    0.000    0.000    0.000 contextlib.py:300(__enter__)
        1    0.000    0.000    0.000    0.000 contextlib.py:302(__exit__)
        1    0.000    0.000    0.000    0.000 contextlib.py:357(__init__)
        1    0.000    0.000    0.000    0.000 contextlib.py:360(__enter__)
        4    0.000    0.000    0.000    0.000 contextlib.py:383(_create_cb_wrapper)
        4    0.000    0.000    0.000    0.000 contextlib.py:385(_exit_wrapper)
        1    0.000    0.000    0.000    0.000 contextlib.py:389(__init__)
        4    0.000    0.000    0.000    0.000 contextlib.py:433(callback)
        4    0.000    0.000    0.000    0.000 contextlib.py:451(_push_exit_callback)
        1    0.000    0.000    0.000    0.000 contextlib.py:467(__enter__)
        1    0.000    0.000    0.000    0.000 contextlib.py:470(__exit__)
        1    0.000    0.000    0.000    0.000 contextlib.py:63(_recreate_cm)
        1    0.000    0.000    0.000    0.000 contextlib.py:75(__call__)
        1    0.000    0.000    0.000    0.000 contextlib.py:76(inner)
       45    0.000    0.000    0.000    0.000 contextlib.py:86(__init__)
        1    0.000    0.000    0.009    0.009 cookiejar.py:1(<module>)
       28    0.000    0.000    0.001    0.000 cookiejar.py:1008(set_ok_domain)
       28    0.000    0.000    0.000    0.000 cookiejar.py:1067(set_ok_port)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1088(return_ok)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1106(return_ok_version)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1115(return_ok_verifiability)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1127(return_ok_secure)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1133(return_ok_expires)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1139(return_ok_port)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1153(return_ok_domain)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1180(domain_return_ok)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1206(path_return_ok)
       68    0.000    0.000    0.000    0.000 cookiejar.py:1219(vals_sorted_by_key)
    92/60    0.000    0.000    0.000    0.000 cookiejar.py:1223(deepvalues)
        1    0.000    0.000    0.000    0.000 cookiejar.py:1241(Absent)
        1    0.000    0.000    0.001    0.001 cookiejar.py:1243(CookieJar)
       32    0.000    0.000    0.000    0.000 cookiejar.py:1258(__init__)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1266(set_policy)
        4    0.000    0.000    0.001    0.000 cookiejar.py:1269(_cookies_for_domain)
       10    0.000    0.000    0.001    0.000 cookiejar.py:1287(_cookies_for_request)
       16    0.000    0.000    0.000    0.000 cookiejar.py:129(offset_from_tz_string)
       10    0.000    0.000    0.000    0.000 cookiejar.py:1294(_cookie_attrs)
        4    0.000    0.000    0.000    0.000 cookiejar.py:1304(<lambda>)
       10    0.000    0.000    0.001    0.000 cookiejar.py:1353(add_cookie_header)
       56    0.000    0.000    0.000    0.000 cookiejar.py:1386(_normalized_cookie_tuples)
       16    0.000    0.000    0.000    0.000 cookiejar.py:143(_str2time)
       28    0.000    0.000    0.001    0.000 cookiejar.py:1483(_cookie_from_cookie_tuple)
       56    0.000    0.000    0.002    0.000 cookiejar.py:1575(_cookies_from_attrs_set)
       28    0.000    0.000    0.000    0.000 cookiejar.py:1584(_process_rfc2109_cookies)
       28    0.000    0.000    0.004    0.000 cookiejar.py:1596(make_cookies)
       32    0.000    0.000    0.000    0.000 cookiejar.py:1664(set_cookie)
       28    0.000    0.000    0.008    0.000 cookiejar.py:1677(extract_cookies)
       10    0.000    0.000    0.000    0.000 cookiejar.py:1731(clear_expired_cookies)
       52    0.000    0.000    0.000    0.000 cookiejar.py:1750(__iter__)
        1    0.000    0.000    0.000    0.000 cookiejar.py:1771(LoadError)
        1    0.000    0.000    0.000    0.000 cookiejar.py:1773(FileCookieJar)
        1    0.000    0.000    0.000    0.000 cookiejar.py:1856(LWPCookieJar)
        1    0.000    0.000    0.000    0.000 cookiejar.py:1976(MozillaCookieJar)
       28    0.000    0.000    0.001    0.000 cookiejar.py:225(http2time)
       28    0.000    0.000    0.000    0.000 cookiejar.py:341(split_header_words)
      110    0.000    0.000    0.000    0.000 cookiejar.py:44(_debug)
       28    0.000    0.000    0.000    0.000 cookiejar.py:452(strip_quotes)
       28    0.000    0.000    0.002    0.000 cookiejar.py:459(parse_ns_headers)
       96    0.000    0.000    0.000    0.000 cookiejar.py:528(is_HDN)
       32    0.000    0.000    0.000    0.000 cookiejar.py:543(domain_match)
       68    0.000    0.000    0.001    0.000 cookiejar.py:613(request_host)
       36    0.000    0.000    0.001    0.000 cookiejar.py:629(eff_request_host)
       32    0.000    0.000    0.001    0.000 cookiejar.py:640(request_path)
       32    0.000    0.000    0.000    0.000 cookiejar.py:668(uppercase_escaped_char)
       60    0.000    0.000    0.001    0.000 cookiejar.py:670(escape_path)
       32    0.000    0.000    0.000    0.000 cookiejar.py:684(reach)
       32    0.000    0.000    0.002    0.000 cookiejar.py:719(is_third_party)
       28    0.000    0.000    0.000    0.000 cookiejar.py:73(_timegm)
        1    0.000    0.000    0.000    0.000 cookiejar.py:736(Cookie)
       28    0.000    0.000    0.000    0.000 cookiejar.py:754(__init__)
        8    0.000    0.000    0.000    0.000 cookiejar.py:803(is_expired)
        1    0.000    0.000    0.000    0.000 cookiejar.py:834(CookiePolicy)
        1    0.000    0.000    0.000    0.000 cookiejar.py:867(DefaultCookiePolicy)
       32    0.000    0.000    0.000    0.000 cookiejar.py:877(__init__)
       32    0.000    0.000    0.000    0.000 cookiejar.py:919(is_blocked)
       32    0.000    0.000    0.000    0.000 cookiejar.py:934(is_not_allowed)
       28    0.000    0.000    0.003    0.000 cookiejar.py:942(set_ok)
       28    0.000    0.000    0.000    0.000 cookiejar.py:961(set_ok_version)
       28    0.000    0.000    0.002    0.000 cookiejar.py:976(set_ok_verifiability)
       28    0.000    0.000    0.000    0.000 cookiejar.py:988(set_ok_name)
       28    0.000    0.000    0.001    0.000 cookiejar.py:997(set_ok_path)
       28    0.000    0.000    0.000    0.000 cookies.py:104(__init__)
       56    0.000    0.000    0.000    0.000 cookies.py:111(info)
       28    0.000    0.000    0.009    0.000 cookies.py:118(extract_cookies_to_jar)
       10    0.000    0.000    0.002    0.000 cookies.py:135(get_cookie_header)
        1    0.000    0.000    0.000    0.000 cookies.py:145(CookieError)
        1    0.000    0.000    0.000    0.000 cookies.py:165(<dictcomp>)
        1    0.000    0.000    0.000    0.000 cookies.py:165(CookieConflictError)
        1    0.000    0.000    0.000    0.000 cookies.py:171(RequestsCookieJar)
        1    0.000    0.000    0.000    0.000 cookies.py:25(MockRequest)
        1    0.000    0.000    0.000    0.000 cookies.py:254(Morsel)
        1    0.000    0.000    0.000    0.000 cookies.py:3(<module>)
       32    0.000    0.000    0.000    0.000 cookies.py:343(set_cookie)
       20    0.000    0.000    0.000    0.000 cookies.py:348(update)
       38    0.000    0.000    0.001    0.000 cookies.py:37(__init__)
        1    0.000    0.000    0.004    0.004 cookies.py:39(<module>)
        4    0.000    0.000    0.000    0.000 cookies.py:414(copy)
        4    0.000    0.000    0.000    0.000 cookies.py:421(get_policy)
        4    0.000    0.000    0.000    0.000 cookies.py:426(_copy_cookie_jar)
       32    0.000    0.000    0.000    0.000 cookies.py:45(get_host)
        1    0.000    0.000    0.000    0.000 cookies.py:460(BaseCookie)
       32    0.000    0.000    0.000    0.000 cookies.py:48(get_origin_req_host)
       22    0.000    0.000    0.001    0.000 cookies.py:508(cookiejar_from_dict)
      100    0.000    0.000    0.000    0.000 cookies.py:51(get_full_url)
       22    0.000    0.000    0.000    0.000 cookies.py:521(<listcomp>)
       16    0.000    0.000    0.000    0.000 cookies.py:529(merge_cookies)
        1    0.000    0.000    0.000    0.000 cookies.py:600(SimpleCookie)
       32    0.000    0.000    0.000    0.000 cookies.py:65(is_unverifiable)
        4    0.000    0.000    0.000    0.000 cookies.py:68(has_header)
        4    0.000    0.000    0.000    0.000 cookies.py:78(add_unredirected_header)
       10    0.000    0.000    0.000    0.000 cookies.py:81(get_new_headers)
       32    0.000    0.000    0.000    0.000 cookies.py:84(unverifiable)
       32    0.000    0.000    0.000    0.000 cookies.py:88(origin_req_host)
        1    0.000    0.000    0.000    0.000 cookies.py:97(MockResponse)
        4    0.000    0.000    0.000    0.000 copy.py:258(_reconstruct)
       33    0.000    0.000    0.000    0.000 copy.py:66(copy)
        1    0.000    0.000    0.000    0.000 copyreg.py:103(_slotnames)
       11    0.000    0.000    0.000    0.000 copyreg.py:12(pickle)
        1    0.000    0.000    0.000    0.000 copyreg.py:22(constructor)
        4    0.000    0.000    0.000    0.000 copyreg.py:94(__newobj__)
        2    0.000    0.000    0.009    0.004 core.py:1(<module>)
        1    0.000    0.000    0.000    0.000 core.py:1120(_DomainedBinaryOperation)
        6    0.000    0.000    0.000    0.000 core.py:1141(__init__)
       14    0.000    0.000    0.002    0.000 core.py:116(doc_note)
        1    0.000    0.000    0.000    0.000 core.py:1278(_replace_dtype_fields_recursive)
        1    0.000    0.000    0.000    0.000 core.py:1310(_replace_dtype_fields)
       44    0.000    0.000    0.001    0.000 core.py:132(get_object_signature)
        1    0.000    0.000    0.000    0.000 core.py:1324(make_mask_descr)
        3    0.000    0.000    0.000    0.000 core.py:1357(getmask)
        1    0.000    0.000    0.000    0.000 core.py:149(MAError)
        1    0.000    0.000    0.000    0.000 core.py:157(MaskError)
        1    0.000    0.000    0.000    0.000 core.py:16(IDNAError)
        1    0.000    0.000    0.001    0.001 core.py:17(where)
        1    0.000    0.000    0.000    0.000 core.py:191(<listcomp>)
        1    0.000    0.000    0.000    0.000 core.py:192(<listcomp>)
        1    0.000    0.000    0.000    0.000 core.py:195(<listcomp>)
        1    0.000    0.000    0.000    0.000 core.py:196(<listcomp>)
        1    0.000    0.000    0.000    0.000 core.py:21(IDNABidiError)
        1    0.000    0.000    0.000    0.000 core.py:2381(_MaskedPrintOption)
        1    0.000    0.000    0.000    0.000 core.py:2387(__init__)
        7    0.000    0.000    0.000    0.000 core.py:2553(_arraymethod)
        1    0.000    0.000    0.000    0.000 core.py:2598(MaskedIterator)
        1    0.000    0.000    0.000    0.000 core.py:26(InvalidCodepoint)
        1    0.000    0.000    0.000    0.000 core.py:2706(MaskedArray)
        1    0.001    0.001    0.001    0.001 core.py:2817(__new__)
        2    0.000    0.000    0.000    0.000 core.py:2948(_update_from)
        2    0.000    0.000    0.000    0.000 core.py:2974(__array_finalize__)
        1    0.000    0.000    0.004    0.004 core.py:3(<module>)
        1    0.000    0.000    0.000    0.000 core.py:31(InvalidCodepointContext)
        1    0.000    0.000    0.000    0.000 core.py:3123(view)
        4    0.000    0.000    0.000    0.000 core.py:3405(dtype)
        2    0.000    0.000    0.000    0.000 core.py:3421(shape)
        1    0.000    0.000    0.000    0.000 core.py:6234(mvoid)
        1    0.000    0.000    0.000    0.000 core.py:6429(MaskedConstant)
        4    0.000    0.000    0.000    0.000 core.py:6433(__has_singleton)
        1    0.000    0.000    0.001    0.001 core.py:6439(__new__)
        1    0.000    0.000    0.000    0.000 core.py:6457(__array_finalize__)
        2    0.000    0.000    0.000    0.000 core.py:6532(__setattr__)
        1    0.000    0.000    0.000    0.000 core.py:6624(_extrema_operation)
        2    0.000    0.000    0.000    0.000 core.py:6633(__init__)
        1    0.000    0.000    0.000    0.000 core.py:6739(_frommethod)
       26    0.000    0.000    0.001    0.000 core.py:6750(__init__)
       26    0.000    0.000    0.001    0.000 core.py:6755(getdoc)
        1    0.000    0.000    0.000    0.000 core.py:792(_DomainCheckInterval)
        3    0.000    0.000    0.000    0.000 core.py:801(__init__)
        1    0.000    0.000    0.000    0.000 core.py:8085(_convert2ma)
        8    0.000    0.000    0.000    0.000 core.py:8098(__init__)
        8    0.000    0.000    0.000    0.000 core.py:8103(getdoc)
        1    0.000    0.000    0.000    0.000 core.py:817(_DomainTan)
        1    0.000    0.000    0.000    0.000 core.py:825(__init__)
        1    0.000    0.000    0.000    0.000 core.py:835(_DomainSafeDivide)
        6    0.000    0.000    0.000    0.000 core.py:841(__init__)
        1    0.000    0.000    0.000    0.000 core.py:85(MaskedArrayFutureWarning)
        1    0.000    0.000    0.000    0.000 core.py:856(_DomainGreater)
        3    0.000    0.000    0.000    0.000 core.py:862(__init__)
        1    0.000    0.000    0.000    0.000 core.py:872(_DomainGreaterEqual)
        2    0.000    0.000    0.000    0.000 core.py:878(__init__)
        1    0.000    0.000    0.000    0.000 core.py:888(_MaskedUFunc)
       52    0.000    0.000    0.001    0.000 core.py:889(__init__)
        1    0.000    0.000    0.000    0.000 core.py:898(_MaskedUnaryOperation)
       26    0.000    0.000    0.000    0.000 core.py:916(__init__)
        1    0.000    0.000    0.000    0.000 core.py:972(_MaskedBinaryOperation)
       18    0.000    0.000    0.000    0.000 core.py:992(__init__)
        4    0.000    0.000    0.000    0.000 cp1252.py:18(encode)
        1    0.000    0.000    0.000    0.000 cp1252.py:22(decode)
        1    0.000    0.000    0.000    0.000 cp949prober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 cp949prober.py:34(CP949Prober)
        1    0.000    0.000    0.000    0.000 css.py:1(<module>)
        1    0.000    0.000    0.000    0.000 css.py:10(CSSWarning)
        5    0.000    0.000    0.000    0.000 css.py:16(_side_expander)
        1    0.000    0.000    0.000    0.000 css.py:30(CSSResolver)
        1    0.000    0.000    0.004    0.004 css_match.py:1(<module>)
        1    0.000    0.000    0.000    0.000 css_match.py:1457(CSSMatch)
        1    0.000    0.000    0.000    0.000 css_match.py:1461(SoupSieve)
        1    0.000    0.000    0.000    0.000 css_match.py:358(Inputs)
        1    0.000    0.000    0.000    0.000 css_match.py:459(_Match)
        1    0.000    0.000    0.000    0.000 css_match.py:59(_FakeParent)
        1    0.000    0.000    0.000    0.000 css_match.py:79(_DocumentNav)
        1    0.000    0.000    0.093    0.093 css_parser.py:1(<module>)
       52    0.000    0.000    0.005    0.000 css_parser.py:1012(<listcomp>)
      325    0.002    0.000    0.007    0.000 css_parser.py:1014(selector_iter)
       14    0.000    0.000    0.022    0.002 css_parser.py:1055(process_selectors)
      308    0.000    0.000    0.001    0.000 css_parser.py:239(css_unescape)
        1    0.000    0.000    0.000    0.000 css_parser.py:294(SelectorPattern)
       15    0.000    0.000    0.049    0.003 css_parser.py:297(__init__)
      311    0.000    0.000    0.000    0.000 css_parser.py:303(get_name)
     2251    0.001    0.000    0.003    0.000 css_parser.py:308(match)
        1    0.000    0.000    0.000    0.000 css_parser.py:314(SpecialPseudoPattern)
        1    0.000    0.000    0.024    0.024 css_parser.py:317(__init__)
        1    0.000    0.000    0.000    0.000 css_parser.py:330(get_name)
      273    0.000    0.000    0.001    0.000 css_parser.py:335(match)
        1    0.000    0.000    0.000    0.000 css_parser.py:351(_Selector)
      136    0.000    0.000    0.001    0.000 css_parser.py:360(__init__)
  136/131    0.000    0.000    0.001    0.000 css_parser.py:376(_freeze_relations)
  136/131    0.000    0.000    0.005    0.000 css_parser.py:386(freeze)
        1    0.000    0.000    0.052    0.052 css_parser.py:420(CSSParser)
       14    0.000    0.000    0.000    0.000 css_parser.py:450(__init__)
       77    0.001    0.000    0.007    0.000 css_parser.py:458(parse_attribute_selector)
       69    0.000    0.000    0.001    0.000 css_parser.py:528(parse_tag_pattern)
    42/30    0.000    0.000    0.017    0.001 css_parser.py:565(parse_pseudo_class)
        1    0.000    0.000    0.000    0.000 css_parser.py:653(parse_pseudo_nth)
    38/29    0.000    0.000    0.016    0.001 css_parser.py:712(parse_pseudo_open)
       84    0.000    0.000    0.001    0.000 css_parser.py:767(parse_combinator)
    52/14    0.001    0.000    0.022    0.002 css_parser.py:862(parse_selectors)
        1    0.000    0.000    0.000    0.000 css_types.py:1(<module>)
        1    0.000    0.000    0.000    0.000 css_types.py:133(Namespaces)
        1    0.000    0.000    0.000    0.000 css_types.py:151(CustomSelectors)
        1    0.000    0.000    0.000    0.000 css_types.py:169(Selector)
      136    0.000    0.000    0.003    0.000 css_types.py:177(__init__)
        1    0.000    0.000    0.000    0.000 css_types.py:198(SelectorNull)
        1    0.000    0.000    0.000    0.000 css_types.py:207(SelectorTag)
       69    0.000    0.000    0.001    0.000 css_types.py:212(__init__)
        1    0.000    0.000    0.000    0.000 css_types.py:221(SelectorAttribute)
       77    0.000    0.000    0.001    0.000 css_types.py:226(__init__)
        1    0.000    0.000    0.000    0.000 css_types.py:237(SelectorContains)
        1    0.000    0.000    0.000    0.000 css_types.py:251(SelectorNth)
        1    0.000    0.000    0.000    0.000 css_types.py:256(__init__)
        1    0.000    0.000    0.000    0.000 css_types.py:269(SelectorLang)
        1    0.000    0.000    0.000    0.000 css_types.py:297(SelectorList)
      189    0.000    0.000    0.002    0.000 css_types.py:302(__init__)
        1    0.000    0.000    0.000    0.000 css_types.py:32(Immutable)
        9    0.000    0.000    0.000    0.000 css_types.py:331(pickle_register)
      472    0.004    0.000    0.005    0.000 css_types.py:37(__init__)
      462    0.000    0.000    0.000    0.000 css_types.py:69(__hash__)
        1    0.000    0.000    0.000    0.000 css_types.py:89(ImmutableDict)
        1    0.000    0.000    0.000    0.000 csv.py:130(DictWriter)
        1    0.000    0.000    0.000    0.000 csv.py:165(Sniffer)
        1    0.000    0.000    0.000    0.000 csv.py:2(<module>)
        1    0.000    0.000    0.000    0.000 csv.py:23(Dialect)
        1    0.000    0.000    0.000    0.000 csv.py:54(excel)
        1    0.000    0.000    0.000    0.000 csv.py:64(excel_tab)
        1    0.000    0.000    0.000    0.000 csv.py:69(unix_dialect)
        1    0.000    0.000    0.000    0.000 csv.py:80(DictReader)
        1    0.000    0.000    0.000    0.000 ctypeslib.py:1(<module>)
        1    0.000    0.000    0.000    0.000 ctypeslib.py:174(_ndptr)
        1    0.000    0.000    0.000    0.000 ctypeslib.py:195(_concrete_ndptr)
        1    0.000    0.000    0.000    0.000 ctypeslib.py:354(_get_scalar_type_map)
        1    0.000    0.000    0.000    0.000 ctypeslib.py:365(<dictcomp>)
        1    0.000    0.000    0.012    0.012 dammit.py:2(<module>)
        1    0.000    0.000    0.000    0.000 dammit.py:225(EncodingDetector)
        1    0.000    0.000    0.000    0.000 dammit.py:389(UnicodeDammit)
        1    0.000    0.000    0.002    0.002 dammit.py:68(EntitySubstitution)
        1    0.000    0.000    0.001    0.001 dammit.py:71(_populate_class_variables)
        2    0.000    0.000    0.001    0.001 dataclasses.py:1012(wrap)
       10    0.000    0.000    0.000    0.000 dataclasses.py:244(__init__)
        1    0.000    0.000    0.000    0.000 dataclasses.py:281(__set_name__)
        2    0.000    0.000    0.000    0.000 dataclasses.py:300(__init__)
       10    0.000    0.000    0.000    0.000 dataclasses.py:322(field)
        4    0.000    0.000    0.000    0.000 dataclasses.py:344(_tuple_str)
        4    0.000    0.000    0.000    0.000 dataclasses.py:353(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:358(_recursive_repr)
        6    0.000    0.000    0.001    0.000 dataclasses.py:377(_create_fn)
       24    0.000    0.000    0.000    0.000 dataclasses.py:391(<genexpr>)
       10    0.000    0.000    0.000    0.000 dataclasses.py:404(_field_assign)
       10    0.000    0.000    0.000    0.000 dataclasses.py:416(_field_init)
       10    0.000    0.000    0.000    0.000 dataclasses.py:470(_init_param)
        2    0.000    0.000    0.000    0.000 dataclasses.py:489(_init_fn)
        2    0.000    0.000    0.000    0.000 dataclasses.py:507(<dictcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:532(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:539(_repr_fn)
        2    0.000    0.000    0.000    0.000 dataclasses.py:543(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:575(_cmp_fn)
       10    0.000    0.000    0.000    0.000 dataclasses.py:597(_is_classvar)
       10    0.000    0.000    0.000    0.000 dataclasses.py:605(_is_initvar)
       10    0.000    0.000    0.000    0.000 dataclasses.py:671(_get_field)
        6    0.000    0.000    0.000    0.000 dataclasses.py:753(_set_new_attribute)
        2    0.000    0.000    0.000    0.000 dataclasses.py:767(_hash_set_none)
        2    0.000    0.000    0.001    0.001 dataclasses.py:809(_process_class)
        2    0.000    0.000    0.000    0.000 dataclasses.py:863(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:924(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:940(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:943(<listcomp>)
        2    0.000    0.000    0.000    0.000 dataclasses.py:949(<listcomp>)
        2    0.000    0.000    0.001    0.001 dataclasses.py:998(dataclass)
        1    0.000    0.000    0.000    0.000 date_converters.py:1(<module>)
        1    0.000    0.000    0.000    0.000 dates.py:1(<module>)
        1    0.000    0.000    0.001    0.001 datetime.py:1(<module>)
        1    0.000    0.000    0.000    0.000 datetime.py:1145(tzinfo)
        1    0.000    0.000    0.000    0.000 datetime.py:1214(IsoCalendarDate)
        1    0.000    0.000    0.000    0.000 datetime.py:1245(time)
        2    0.000    0.000    0.000    0.000 datetime.py:1270(__new__)
        1    0.000    0.000    0.000    0.000 datetime.py:1594(datetime)
        3    0.000    0.000    0.000    0.000 datetime.py:1602(__new__)
        1    0.000    0.000    0.000    0.000 datetime.py:2216(timezone)
        3    0.000    0.000    0.000    0.000 datetime.py:2236(_create)
       35    0.000    0.000    0.000    0.000 datetime.py:383(_check_int_field)
        5    0.000    0.000    0.000    0.000 datetime.py:415(_check_date_fields)
        5    0.000    0.000    0.000    0.000 datetime.py:428(_check_time_fields)
        5    0.000    0.000    0.000    0.000 datetime.py:445(_check_tzinfo_arg)
        3    0.000    0.000    0.000    0.000 datetime.py:45(_days_before_year)
        1    0.000    0.000    0.000    0.000 datetime.py:473(timedelta)
       12    0.000    0.000    0.000    0.000 datetime.py:492(__new__)
        5    0.000    0.000    0.000    0.000 datetime.py:50(_days_in_month)
        2    0.000    0.000    0.000    0.000 datetime.py:665(__neg__)
        1    0.000    0.000    0.000    0.000 datetime.py:793(date)
        2    0.000    0.000    0.000    0.000 datetime.py:823(__new__)
        2    0.000    0.000    0.007    0.003 datetimelike.py:1(<module>)
        1    0.000    0.000    0.000    0.000 datetimelike.py:1440(DatelikeOps)
        1    0.000    0.000    0.001    0.001 datetimelike.py:1591(TimelikeOps)
        4    0.000    0.000    0.000    0.000 datetimelike.py:48(_join_i8_wrapper)
        1    0.000    0.000    0.000    0.000 datetimelike.py:629(DatetimeTimedeltaMixin)
        1    0.000    0.000    0.000    0.000 datetimelike.py:81(DatetimeIndexOpsMixin)
        1    0.000    0.000    0.000    0.000 datetimelike.py:83(InvalidComparison)
        1    0.000    0.000    0.000    0.000 datetimelike.py:92(DatetimeLikeArrayMixin)
        3    0.000    0.000    0.015    0.005 datetimes.py:1(<module>)
        1    0.000    0.000    0.000    0.000 datetimes.py:117(DatetimeArray)
        1    0.000    0.000    0.001    0.001 datetimes.py:72(DatetimeIndex)
        1    0.000    0.000    0.000    0.000 datetimes.py:74(<listcomp>)
       19    0.000    0.000    0.000    0.000 datetimes.py:79(_field_accessor)
        1    0.000    0.000    0.004    0.004 decimal.py:2(<module>)
        1    0.000    0.000    0.002    0.002 decoder.py:1(<module>)
        1    0.000    0.000    0.000    0.000 decoder.py:20(JSONDecodeError)
        1    0.000    0.000    0.000    0.000 decoder.py:254(JSONDecoder)
        1    0.000    0.000    0.000    0.000 decoder.py:284(__init__)
       12    0.000    0.000    0.041    0.003 decoder.py:332(decode)
       12    0.040    0.003    0.040    0.003 decoder.py:343(raw_decode)
        1    0.000    0.000    0.006    0.006 defchararray.py:1(<module>)
        1    0.000    0.000    0.000    0.000 defchararray.py:1805(chararray)
        1    0.000    0.000    0.012    0.012 defmatrix.py:1(<module>)
        1    0.000    0.000    0.000    0.000 defmatrix.py:72(matrix)
        1    0.000    0.000    0.000    0.000 defs.py:5(<module>)
        1    0.000    0.000    0.000    0.000 dispatch.py:1(<module>)
        4    0.000    0.000    0.000    0.000 dispatch.py:11(should_extension_dispatch)
        1    0.000    0.000    0.000    0.000 display.py:1(<module>)
        1    0.000    0.000    0.000    0.000 display.py:15(detect_console_encoding)
        1    0.000    0.000    0.000    0.000 docstrings.py:1(<module>)
       36    0.000    0.000    0.000    0.000 docstrings.py:7(make_flex_doc)
        1    0.000    0.000    0.000    0.000 dtype.py:1(<module>)
        1    0.000    0.000    0.000    0.000 dtype.py:28(SparseDtype)
        1    0.000    0.000    0.011    0.011 dtypes.py:1(<module>)
       17    0.000    0.000    0.000    0.000 dtypes.py:1078(construct_from_string)
      262    0.000    0.000    0.001    0.000 dtypes.py:1132(is_dtype)
        1    0.000    0.000    0.000    0.000 dtypes.py:159(__init__)
       17    0.000    0.000    0.000    0.000 dtypes.py:277(construct_from_string)
        1    0.000    0.000    0.000    0.000 dtypes.py:308(_finalize)
        1    0.000    0.000    0.000    0.000 dtypes.py:40(PandasExtensionDtype)
        1    0.000    0.000    0.000    0.000 dtypes.py:462(validate_ordered)
        1    0.000    0.000    0.001    0.001 dtypes.py:604(DatetimeTZDtype)
       17    0.000    0.000    0.000    0.000 dtypes.py:711(construct_from_string)
        1    0.000    0.000    0.000    0.000 dtypes.py:780(PeriodDtype)
       17    0.000    0.000    0.000    0.000 dtypes.py:870(construct_from_string)
        1    0.000    0.000    0.000    0.000 dtypes.py:88(CategoricalDtypeType)
      278    0.000    0.000    0.001    0.000 dtypes.py:923(is_dtype)
        1    0.000    0.000    0.000    0.000 dtypes.py:96(CategoricalDtype)
        1    0.000    0.000    0.000    0.000 dtypes.py:983(IntervalDtype)
        1    0.000    0.000    0.000    0.000 easter.py:2(<module>)
        1    0.000    0.000    0.001    0.001 einsumfunc.py:1(<module>)
        1    0.000    0.000    0.000    0.000 element.py:1004(Doctype)
        1    0.000    0.000    0.000    0.000 element.py:101(CharsetMetaAttributeValue)
        1    0.000    0.000    0.000    0.000 element.py:1033(Stylesheet)
        1    0.000    0.000    0.000    0.000 element.py:1042(Script)
        1    0.000    0.000    0.000    0.000 element.py:1051(TemplateString)
        1    0.000    0.000    0.000    0.000 element.py:1060(Tag)
        1    0.000    0.000    0.000    0.000 element.py:122(ContentMetaAttributeValue)
        1    0.000    0.000    0.000    0.000 element.py:151(PageElement)
        1    0.000    0.000    0.000    0.000 element.py:1895(SoupStrainer)
        1    0.000    0.000    0.115    0.115 element.py:2(<module>)
        1    0.000    0.000    0.000    0.000 element.py:2159(ResultSet)
        3    0.000    0.000    0.000    0.000 element.py:34(_alias)
        1    0.000    0.000    0.000    0.000 element.py:75(NamespacedAttribute)
        1    0.000    0.000    0.000    0.000 element.py:875(NavigableString)
        1    0.000    0.000    0.000    0.000 element.py:949(PreformattedString)
        1    0.000    0.000    0.000    0.000 element.py:976(CData)
        1    0.000    0.000    0.000    0.000 element.py:98(AttributeValueWithCharsetSubstitution)
        1    0.000    0.000    0.000    0.000 element.py:981(ProcessingInstruction)
        1    0.000    0.000    0.000    0.000 element.py:987(XMLProcessingInstruction)
        1    0.000    0.000    0.000    0.000 element.py:992(Comment)
        1    0.000    0.000    0.000    0.000 element.py:998(Declaration)
        1    0.000    0.000    0.000    0.000 encoder.py:1(<module>)
        1    0.000    0.000    0.000    0.000 encoder.py:104(__init__)
        4    0.000    0.000    0.001    0.000 encoder.py:182(encode)
        4    0.001    0.000    0.001    0.000 encoder.py:204(iterencode)
        1    0.000    0.000    0.000    0.000 encoder.py:73(JSONEncoder)
        1    0.000    0.000    0.001    0.001 encoders.py:5(<module>)
        1    0.000    0.000    0.006    0.006 engines.py:1(<module>)
        1    0.000    0.000    0.000    0.000 engines.py:100(NumExprEngine)
        1    0.000    0.000    0.000    0.000 engines.py:117(PythonEngine)
        1    0.000    0.000    0.000    0.000 engines.py:16(NumExprClobberingError)
        1    0.000    0.000    0.000    0.000 engines.py:39(AbstractEngine)
        1    0.000    0.000    0.000    0.000 entities.py:1(<module>)
       11    0.000    0.000    0.000    0.000 enum.py:1017(_decompose)
       32    0.000    0.000    0.000    0.000 enum.py:1040(<lambda>)
      252    0.000    0.000    0.000    0.000 enum.py:12(_is_descriptor)
       19    0.000    0.000    0.000    0.000 enum.py:164(__prepare__)
       19    0.002    0.000    0.005    0.000 enum.py:179(__new__)
       19    0.000    0.000    0.000    0.000 enum.py:197(<dictcomp>)
      307    0.000    0.000    0.000    0.000 enum.py:22(_is_dunder)
       19    0.000    0.000    0.001    0.000 enum.py:221(<setcomp>)
       56    0.000    0.000    0.000    0.000 enum.py:244(<genexpr>)
        5    0.000    0.000    0.000    0.000 enum.py:259(<genexpr>)
      307    0.000    0.000    0.000    0.000 enum.py:33(_is_sunder)
      718    0.001    0.000    0.006    0.000 enum.py:358(__call__)
       19    0.000    0.000    0.000    0.000 enum.py:415(__getattr__)
       11    0.000    0.000    0.000    0.000 enum.py:434(__iter__)
      122    0.000    0.000    0.000    0.000 enum.py:438(<genexpr>)
      307    0.000    0.000    0.001    0.000 enum.py:44(_is_private)
       15    0.000    0.000    0.000    0.000 enum.py:443(__members__)
      372    0.001    0.000    0.001    0.000 enum.py:462(__setattr__)
       12    0.000    0.000    0.004    0.000 enum.py:475(_create_)
       12    0.000    0.000    0.007    0.001 enum.py:528(_convert_)
       12    0.000    0.000    0.002    0.000 enum.py:545(<listcomp>)
      105    0.000    0.000    0.000    0.000 enum.py:551(<lambda>)
       19    0.000    0.000    0.000    0.000 enum.py:561(_check_for_existing_members)
        1    0.000    0.000    0.000    0.000 enum.py:57(_make_class_unpicklable)
       50    0.000    0.000    0.000    0.000 enum.py:571(_get_mixins_)
       50    0.000    0.000    0.000    0.000 enum.py:582(_find_data_type)
       19    0.000    0.000    0.000    0.000 enum.py:618(_find_new_)
      706    0.001    0.000    0.001    0.000 enum.py:670(__new__)
      247    0.000    0.000    0.000    0.000 enum.py:792(value)
       19    0.000    0.000    0.000    0.000 enum.py:81(__init__)
      307    0.001    0.000    0.002    0.000 enum.py:88(__setitem__)
       11    0.000    0.000    0.001    0.000 enum.py:928(_missing_)
       11    0.000    0.000    0.001    0.000 enum.py:938(_create_pseudo_member_)
       75    0.000    0.000    0.001    0.000 enum.py:971(__or__)
      230    0.001    0.000    0.002    0.000 enum.py:977(__and__)
        1    0.000    0.000    0.000    0.000 enums.py:1(<module>)
        1    0.000    0.000    0.000    0.000 enums.py:17(LanguageFilter)
        1    0.000    0.000    0.000    0.000 enums.py:32(ProbingState)
        1    0.000    0.000    0.000    0.000 enums.py:41(MachineState)
        1    0.000    0.000    0.000    0.000 enums.py:50(SequenceLikelihood)
        1    0.000    0.000    0.000    0.000 enums.py:65(CharacterCategory)
        1    0.000    0.000    0.000    0.000 enums.py:8(InputState)
        1    0.000    0.000    0.001    0.001 error.py:1(<module>)
        1    0.000    0.000    0.000    0.000 error.py:19(URLError)
        1    0.000    0.000    0.000    0.000 error.py:35(HTTPError)
        1    0.000    0.000    0.000    0.000 error.py:73(ContentTooShortError)
        1    0.000    0.000    0.000    0.000 errors.py:104(ObsoleteHeaderDefect)
        1    0.000    0.000    0.000    0.000 errors.py:107(NonASCIILocalPartDefect)
        1    0.000    0.000    0.000    0.000 errors.py:12(MessageParseError)
        1    0.000    0.000    0.000    0.000 errors.py:16(HeaderParseError)
        1    0.000    0.000    0.000    0.000 errors.py:20(BoundaryError)
        1    0.000    0.000    0.000    0.000 errors.py:24(MultipartConversionError)
        1    0.000    0.000    0.000    0.000 errors.py:28(CharsetError)
        1    0.000    0.000    0.000    0.000 errors.py:33(MessageDefect)
        1    0.000    0.000    0.000    0.000 errors.py:41(NoBoundaryInMultipartDefect)
        1    0.000    0.000    0.000    0.000 errors.py:44(StartBoundaryNotFoundDefect)
        1    0.000    0.000    0.000    0.000 errors.py:47(CloseBoundaryNotFoundDefect)
        1    0.000    0.000    0.000    0.000 errors.py:5(<module>)
        1    0.000    0.000    0.000    0.000 errors.py:50(FirstHeaderLineIsContinuationDefect)
        1    0.000    0.000    0.000    0.000 errors.py:53(MisplacedEnvelopeHeaderDefect)
        1    0.000    0.000    0.000    0.000 errors.py:56(MissingHeaderBodySeparatorDefect)
        1    0.000    0.000    0.000    0.000 errors.py:61(MultipartInvariantViolationDefect)
        1    0.000    0.000    0.000    0.000 errors.py:64(InvalidMultipartContentTransferEncodingDefect)
        1    0.000    0.000    0.000    0.000 errors.py:67(UndecodableBytesDefect)
        1    0.000    0.000    0.000    0.000 errors.py:70(InvalidBase64PaddingDefect)
        1    0.000    0.000    0.000    0.000 errors.py:73(InvalidBase64CharactersDefect)
        1    0.000    0.000    0.000    0.000 errors.py:76(InvalidBase64LengthDefect)
        1    0.000    0.000    0.000    0.000 errors.py:8(MessageError)
        1    0.000    0.000    0.000    0.000 errors.py:81(HeaderDefect)
        1    0.000    0.000    0.000    0.000 errors.py:87(InvalidHeaderDefect)
        1    0.000    0.000    0.000    0.000 errors.py:90(HeaderMissingRequiredValue)
        1    0.000    0.000    0.000    0.000 errors.py:93(NonPrintableDefect)
        1    0.000    0.000    0.001    0.001 escprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 escprober.py:35(EscCharSetProber)
        1    0.000    0.000    0.000    0.000 escsm.py:28(<module>)
        1    0.000    0.000    0.000    0.000 eucjpprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 eucjpprober.py:36(EUCJPProber)
        1    0.000    0.000    0.000    0.000 euckrfreq.py:41(<module>)
        1    0.000    0.000    0.000    0.000 euckrprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 euckrprober.py:34(EUCKRProber)
        1    0.000    0.000    0.000    0.000 euctwfreq.py:44(<module>)
        1    0.000    0.000    0.000    0.000 euctwprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 euctwprober.py:33(EUCTWProber)
        1    0.000    0.000    0.011    0.011 eval.py:1(<module>)
        1    0.000    0.000    0.018    0.018 ewm.py:1(<module>)
        1    0.000    0.000    0.000    0.000 ewm.py:503(ExponentialMovingWindowGroupby)
        1    0.000    0.000    0.001    0.001 ewm.py:88(ExponentialMovingWindow)
        1    0.000    0.000    0.003    0.003 excel.py:1(<module>)
        1    0.000    0.000    0.000    0.000 excel.py:30(ExcelCell)
        1    0.000    0.000    0.000    0.000 excel.py:402(ExcelFormatter)
        1    0.000    0.000    0.000    0.000 excel.py:51(CSSToExcelConverter)
        2    0.000    0.000    0.068    0.034 exceptions.py:1(<module>)
        1    0.000    0.000    0.000    0.000 exceptions.py:100(StreamConsumedError)
        1    0.000    0.000    0.000    0.000 exceptions.py:104(RetryError)
        1    0.000    0.000    0.000    0.000 exceptions.py:104(TimeoutStateError)
        1    0.000    0.000    0.000    0.000 exceptions.py:108(UnrewindableBodyError)
        1    0.000    0.000    0.000    0.000 exceptions.py:11(Error)
        1    0.000    0.000    0.000    0.000 exceptions.py:110(TimeoutError)
        1    0.000    0.000    0.000    0.000 exceptions.py:114(RequestsWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:118(FileModeWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:12(RequestException)
        1    0.000    0.000    0.000    0.000 exceptions.py:120(ReadTimeoutError)
        1    0.000    0.000    0.000    0.000 exceptions.py:122(RequestsDependencyWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:128(ConnectTimeoutError)
        1    0.000    0.000    0.000    0.000 exceptions.py:134(NewConnectionError)
        1    0.000    0.000    0.000    0.000 exceptions.py:14(HTTPWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:140(EmptyPoolError)
        1    0.000    0.000    0.000    0.000 exceptions.py:146(ClosedPoolError)
        1    0.000    0.000    0.000    0.000 exceptions.py:15(UnknownTimeZoneError)
        1    0.000    0.000    0.000    0.000 exceptions.py:152(LocationValueError)
        1    0.000    0.000    0.000    0.000 exceptions.py:158(LocationParseError)
        1    0.000    0.000    0.000    0.000 exceptions.py:168(URLSchemeUnknown)
        1    0.000    0.000    0.000    0.000 exceptions.py:178(ResponseError)
        1    0.000    0.000    0.000    0.000 exceptions.py:185(SecurityWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:191(SubjectAltNameWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:197(InsecureRequestWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:20(PoolError)
        1    0.000    0.000    0.000    0.000 exceptions.py:203(SystemTimeWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:209(InsecurePlatformWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:215(SNIMissingWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:221(DependencyWarning)
        1    0.000    0.000    0.000    0.000 exceptions.py:230(ResponseNotChunked)
        1    0.000    0.000    0.000    0.000 exceptions.py:236(BodyNotHttplibCompatible)
        1    0.000    0.000    0.000    0.000 exceptions.py:245(IncompleteRead)
        1    0.000    0.000    0.000    0.000 exceptions.py:263(InvalidChunkLength)
        1    0.000    0.000    0.000    0.000 exceptions.py:28(HTTPError)
        1    0.000    0.000    0.000    0.000 exceptions.py:280(InvalidHeader)
        1    0.000    0.000    0.000    0.000 exceptions.py:286(ProxySchemeUnknown)
        1    0.000    0.000    0.000    0.000 exceptions.py:3(<module>)
        1    0.000    0.000    0.000    0.000 exceptions.py:306(ProxySchemeUnsupported)
        1    0.000    0.000    0.000    0.000 exceptions.py:312(HeaderParsingError)
        1    0.000    0.000    0.000    0.000 exceptions.py:32(ConnectionError)
        1    0.000    0.000    0.000    0.000 exceptions.py:32(RequestError)
        1    0.000    0.000    0.000    0.000 exceptions.py:320(UnrewindableBodyError)
        1    0.000    0.000    0.000    0.000 exceptions.py:36(ProxyError)
        1    0.000    0.000    0.000    0.000 exceptions.py:38(InvalidTimeError)
        1    0.000    0.000    0.000    0.000 exceptions.py:40(SSLError)
        1    0.000    0.000    0.000    0.000 exceptions.py:42(AmbiguousTimeError)
        1    0.000    0.000    0.000    0.000 exceptions.py:44(SSLError)
        1    0.000    0.000    0.000    0.000 exceptions.py:44(Timeout)
        1    0.000    0.000    0.000    0.000 exceptions.py:50(ProxyError)
        1    0.000    0.000    0.000    0.000 exceptions.py:53(ConnectTimeout)
        1    0.000    0.000    0.000    0.000 exceptions.py:53(NonExistentTimeError)
        1    0.000    0.000    0.000    0.000 exceptions.py:58(DecodeError)
        1    0.000    0.000    0.000    0.000 exceptions.py:60(ReadTimeout)
        1    0.000    0.000    0.000    0.000 exceptions.py:64(ProtocolError)
        1    0.000    0.000    0.000    0.000 exceptions.py:64(URLRequired)
        1    0.000    0.000    0.000    0.000 exceptions.py:68(TooManyRedirects)
        1    0.000    0.000    0.000    0.000 exceptions.py:72(MissingSchema)
        1    0.000    0.000    0.000    0.000 exceptions.py:76(InvalidSchema)
        1    0.000    0.000    0.000    0.000 exceptions.py:77(MaxRetryError)
        1    0.000    0.000    0.000    0.000 exceptions.py:8(HTTPError)
        1    0.000    0.000    0.000    0.000 exceptions.py:80(InvalidURL)
        1    0.000    0.000    0.000    0.000 exceptions.py:84(InvalidHeader)
        1    0.000    0.000    0.000    0.000 exceptions.py:88(InvalidProxyURL)
        1    0.000    0.000    0.000    0.000 exceptions.py:92(ChunkedEncodingError)
        1    0.000    0.000    0.000    0.000 exceptions.py:95(HostChangedError)
        1    0.000    0.000    0.000    0.000 exceptions.py:96(ContentDecodingError)
        1    0.000    0.000    0.001    0.001 expanding.py:1(<module>)
        1    0.000    0.000    0.001    0.001 expanding.py:15(Expanding)
        1    0.000    0.000    0.000    0.000 expanding.py:279(ExpandingGroupby)
        1    0.000    0.000    0.002    0.002 expr.py:1(<module>)
        5    0.000    0.000    0.000    0.000 expr.py:110(_compose2)
        2    0.000    0.000    0.000    0.000 expr.py:117(_compose)
        2    0.000    0.000    0.000    0.000 expr.py:159(_is_type)
      120    0.000    0.000    0.000    0.000 expr.py:171(<genexpr>)
      168    0.000    0.000    0.000    0.000 expr.py:173(<genexpr>)
       13    0.000    0.000    0.000    0.000 expr.py:178(_filter_nodes)
      124    0.000    0.000    0.000    0.000 expr.py:182(<genexpr>)
      119    0.000    0.000    0.000    0.000 expr.py:186(<lambda>)
      162    0.000    0.000    0.000    0.000 expr.py:247(_node_not_implemented)
        3    0.000    0.000    0.000    0.000 expr.py:261(disallow)
        3    0.000    0.000    0.000    0.000 expr.py:271(disallowed)
       22    0.000    0.000    0.000    0.000 expr.py:283(_op_maker)
        1    0.000    0.000    0.000    0.000 expr.py:308(add_ops)
        1    0.000    0.000    0.000    0.000 expr.py:313(f)
        1    0.000    0.000    0.000    0.000 expr.py:327(BaseExprVisitor)
        1    0.000    0.000    0.000    0.000 expr.py:371(<dictcomp>)
        1    0.000    0.000    0.000    0.000 expr.py:744(PandasExprVisitor)
        1    0.000    0.000    0.000    0.000 expr.py:762(PythonExprVisitor)
        1    0.000    0.000    0.000    0.000 expr.py:768(Expr)
        1    0.000    0.000    0.004    0.004 expressions.py:1(<module>)
        4    0.000    0.000    0.000    0.000 expressions.py:187(_has_bool_dtype)
        4    0.000    0.000    0.000    0.000 expressions.py:196(_bool_arith_check)
        4    0.000    0.000    0.000    0.000 expressions.py:218(evaluate)
        1    0.000    0.000    0.000    0.000 expressions.py:40(set_use_numexpr)
        4    0.000    0.000    0.000    0.000 expressions.py:62(_evaluate_standard)
        1    0.000    0.000    0.001    0.001 extension.py:1(<module>)
       13    0.000    0.000    0.001    0.000 extension.py:110(wrapper)
        6    0.000    0.000    0.000    0.000 extension.py:120(_make_wrapped_comparison_op)
       16    0.000    0.000    0.000    0.000 extension.py:140(make_wrapped_arith_op)
        1    0.000    0.000    0.000    0.000 extension.py:199(ExtensionIndex)
      120    0.001    0.000    0.001    0.000 extension.py:26(inherit_from_data)
        1    0.000    0.000    0.000    0.000 extension.py:338(NDArrayBackedExtensionIndex)
       13    0.000    0.000    0.000    0.000 extension.py:97(inherit_names)
        1    0.000    0.000    0.002    0.002 extras.py:1(<module>)
        1    0.000    0.000    0.000    0.000 extras.py:1467(MAxisConcatenator)
        1    0.000    0.000    0.000    0.000 extras.py:1497(mr_class)
        1    0.000    0.000    0.000    0.000 extras.py:1515(__init__)
        1    0.000    0.000    0.000    0.000 extras.py:215(_fromnxfunction)
       10    0.000    0.000    0.001    0.000 extras.py:235(__init__)
       10    0.000    0.000    0.001    0.000 extras.py:239(getdoc)
        1    0.000    0.000    0.000    0.000 extras.py:265(_fromnxfunction_single)
        1    0.000    0.000    0.000    0.000 extras.py:283(_fromnxfunction_seq)
        1    0.000    0.000    0.000    0.000 extras.py:296(_fromnxfunction_args)
        1    0.000    0.000    0.000    0.000 extras.py:321(_fromnxfunction_allargs)
        1    0.000    0.000    0.000    0.000 feather_format.py:1(<module>)
       10    0.000    0.000    0.000    0.000 feedparser.py:101(push)
       20    0.000    0.000    0.000    0.000 feedparser.py:122(pushlines)
       20    0.000    0.000    0.000    0.000 feedparser.py:125(__iter__)
      222    0.000    0.000    0.000    0.000 feedparser.py:128(__next__)
        1    0.000    0.000    0.000    0.000 feedparser.py:136(FeedParser)
       10    0.000    0.000    0.000    0.000 feedparser.py:139(__init__)
       10    0.000    0.000    0.003    0.000 feedparser.py:173(feed)
       20    0.000    0.000    0.003    0.000 feedparser.py:178(_call_parse)
       10    0.000    0.000    0.000    0.000 feedparser.py:184(close)
       10    0.000    0.000    0.000    0.000 feedparser.py:197(_new_message)
       10    0.000    0.000    0.000    0.000 feedparser.py:210(_pop_message)
       20    0.000    0.000    0.003    0.000 feedparser.py:218(_parsegen)
        1    0.000    0.000    0.000    0.000 feedparser.py:45(BufferedSubFile)
       10    0.001    0.000    0.001    0.000 feedparser.py:471(_parse_headers)
        1    0.000    0.000    0.022    0.022 feedparser.py:5(<module>)
       10    0.000    0.000    0.000    0.000 feedparser.py:53(__init__)
        1    0.000    0.000    0.000    0.000 feedparser.py:532(BytesFeedParser)
       10    0.000    0.000    0.000    0.000 feedparser.py:70(close)
      222    0.000    0.000    0.000    0.000 feedparser.py:78(readline)
        1    0.000    0.000    0.003    0.003 fields.py:1(<module>)
        1    0.000    0.000    0.000    0.000 fields.py:126(RequestField)
        1    0.000    0.000    0.000    0.000 fields.py:74(<dictcomp>)
        1    0.000    0.000    0.004    0.004 filepost.py:1(<module>)
        1    0.000    0.000    0.000    0.000 flags.py:1(<module>)
        1    0.000    0.000    0.000    0.000 flags.py:4(Flags)
       44    0.000    0.000    0.000    0.000 flags.py:47(__init__)
       12    0.000    0.000    0.000    0.000 flags.py:51(allows_duplicate_labels)
       12    0.000    0.000    0.000    0.000 flags.py:83(allows_duplicate_labels)
        1    0.000    0.000    0.003    0.003 floating.py:1(<module>)
        1    0.000    0.000    0.000    0.000 floating.py:201(FloatingArray)
        1    0.000    0.000    0.000    0.000 floating.py:36(FloatingDtype)
        1    0.000    0.000    0.000    0.000 floating.py:498(Float32Dtype)
        1    0.000    0.000    0.000    0.000 floating.py:505(Float64Dtype)
        1    0.000    0.000    0.000    0.000 fnmatch.py:1(<module>)
        1    0.000    0.000    0.001    0.001 fnmatch.py:44(_compile_pattern)
        1    0.000    0.000    0.001    0.001 fnmatch.py:54(filter)
        1    0.000    0.000    0.000    0.000 fnmatch.py:80(translate)
        2    0.000    0.000    0.014    0.007 format.py:1(<module>)
        1    0.000    0.000    0.000    0.000 format.py:1221(GenericArrayFormatter)
        1    0.000    0.000    0.000    0.000 format.py:1323(FloatArrayFormatter)
        1    0.000    0.000    0.000    0.000 format.py:1497(IntArrayFormatter)
        1    0.000    0.000    0.000    0.000 format.py:1508(Datetime64Formatter)
        1    0.000    0.000    0.000    0.000 format.py:1536(ExtensionArrayFormatter)
        1    0.000    0.000    0.000    0.000 format.py:1704(Datetime64TZFormatter)
        1    0.000    0.000    0.000    0.000 format.py:1717(Timedelta64Formatter)
        1    0.000    0.000    0.000    0.000 format.py:177(CategoricalFormatter)
        1    0.000    0.000    0.000    0.000 format.py:1890(EngFormatter)
        1    0.000    0.000    0.000    0.000 format.py:241(SeriesFormatter)
        1    0.000    0.000    0.000    0.000 format.py:401(TextAdjustment)
        1    0.000    0.000    0.000    0.000 format.py:415(EastAsianTextAdjustment)
        1    0.000    0.000    0.000    0.000 format.py:462(DataFrameFormatter)
        1    0.000    0.000    0.000    0.000 format.py:912(DataFrameRenderer)
        1    0.000    0.000    0.013    0.013 formatter.py:1(<module>)
        1    0.000    0.000    0.000    0.000 formatter.py:116(HTMLFormatter)
        4    0.000    0.000    0.000    0.000 formatter.py:119(__init__)
        1    0.000    0.000    0.000    0.000 formatter.py:123(XMLFormatter)
        2    0.000    0.000    0.000    0.000 formatter.py:126(__init__)
        1    0.000    0.000    0.000    0.000 formatter.py:3(Formatter)
        8    0.000    0.000    0.000    0.000 formatter.py:41(_default)
        8    0.000    0.000    0.000    0.000 formatter.py:48(__init__)
        1    0.000    0.000    0.111    0.111 frame.py:1(<module>)
        1    0.000    0.000    0.007    0.007 frame.py:394(DataFrame)
       20    0.000    0.000    0.040    0.002 frame.py:502(__init__)
        1    0.000    0.000    0.000    0.000 frequencies.py:1(<module>)
        1    0.000    0.000    0.000    0.000 frequencies.py:186(_FrequencyInferer)
        1    0.000    0.000    0.000    0.000 frequencies.py:410(_TimedeltaFrequencyInferer)
        1    0.000    0.000    0.008    0.008 fromnumeric.py:1(<module>)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:2928(_prod_dispatcher)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:2933(prod)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:3123(_ndim_dispatcher)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:3127(ndim)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:69(_wrapreduction)
        4    0.000    0.000    0.000    0.000 fromnumeric.py:70(<dictcomp>)
        1    0.000    0.000    0.000    0.000 frozen.py:1(<module>)
        1    0.000    0.000    0.000    0.000 frozen.py:17(FrozenList)
        1    0.000    0.000    0.001    0.001 function.py:1(<module>)
        1    0.000    0.000    0.000    0.000 function.py:32(CompatValidator)
       24    0.000    0.000    0.000    0.000 function.py:33(__init__)
        8    0.000    0.000    0.000    0.000 function.py:45(__call__)
        2    0.000    0.000    0.006    0.003 function_base.py:1(<module>)
        1    0.000    0.000    0.000    0.000 function_base.py:1951(vectorize)
      284    0.000    0.000    0.000    0.000 function_base.py:443(_needs_add_docstring)
      284    0.000    0.000    0.001    0.000 function_base.py:461(_add_docstring)
      284    0.001    0.000    0.005    0.000 function_base.py:475(add_newdoc)
      511    0.002    0.000    0.004    0.000 functools.py:35(update_wrapper)
        4    0.000    0.000    0.000    0.000 functools.py:478(lru_cache)
        4    0.000    0.000    0.000    0.000 functools.py:517(decorating_function)
      506    0.001    0.000    0.001    0.000 functools.py:65(wraps)
        1    0.000    0.000    0.000    0.000 functools.py:798(singledispatch)
        2    0.000    0.000    0.000    0.000 functools.py:839(register)
        1    0.000    0.000    0.000    0.000 functools.py:848(<lambda>)
        1    0.000    0.000    0.000    0.000 functools.py:934(__init__)
        1    0.000    0.000    0.000    0.000 functools.py:940(__set_name__)
        1    0.000    0.000    0.000    0.000 gb2312freq.py:42(<module>)
        1    0.000    0.000    0.000    0.000 gb2312prober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 gb2312prober.py:33(GB2312Prober)
        1    0.000    0.000    0.000    0.000 gbq.py:1(<module>)
        3    0.000    0.000    0.250    0.083 generic.py:1(<module>)
        4    0.000    0.000    0.001    0.000 generic.py:10565(_logical_func)
        4    0.000    0.000    0.001    0.000 generic.py:10593(any)
        4    0.000    0.000    0.001    0.000 generic.py:10690(_stat_function)
        4    0.000    0.000    0.001    0.000 generic.py:10720(max)
        2    0.000    0.000    0.001    0.000 generic.py:10851(_add_numeric_operations)
        4    0.000    0.000    0.001    0.000 generic.py:10858(any)
        4    0.000    0.000    0.001    0.000 generic.py:11181(max)
        2    0.000    0.000    0.000    0.000 generic.py:11409(_doc_parms)
        5    0.000    0.000    0.000    0.000 generic.py:11412(<genexpr>)
        2    0.000    0.000    0.000    0.000 generic.py:120(pin_allowlisted_properties)
        2    0.000    0.000    0.000    0.000 generic.py:141(pinner)
        1    0.000    0.000    0.006    0.006 generic.py:146(NDFrame)
        1    0.000    0.000    0.001    0.001 generic.py:156(SeriesGroupBy)
        4    0.000    0.000    0.000    0.000 generic.py:1784(__hash__)
        4    0.000    0.000    0.000    0.000 generic.py:1836(__contains__)
       44    0.000    0.000    0.000    0.000 generic.py:188(__init__)
       12    0.000    0.000    0.000    0.000 generic.py:227(attrs)
       24    0.000    0.000    0.000    0.000 generic.py:248(flags)
       20    0.004    0.000    0.004    0.000 generic.py:26(create_pandas_abc_type)
     5191    0.002    0.000    0.003    0.000 generic.py:30(_check)
        8    0.000    0.000    0.000    0.000 generic.py:340(_validate_dtype)
        4    0.000    0.000    0.000    0.000 generic.py:424(_construct_axes_from_arguments)
        4    0.000    0.000    0.000    0.000 generic.py:453(<dictcomp>)
       12    0.000    0.000    0.000    0.000 generic.py:456(_get_axis_number)
        4    0.000    0.000    0.001    0.000 generic.py:4564(reindex)
        4    0.000    0.000    0.000    0.000 generic.py:470(_get_axis)
        8    0.000    0.000    0.001    0.000 generic.py:4797(<genexpr>)
       12    0.000    0.000    0.000    0.000 generic.py:5411(__finalize__)
       32    0.000    0.000    0.000    0.000 generic.py:5449(__getattr__)
        4    0.000    0.000    0.000    0.000 generic.py:545(_info_axis)
       32    0.000    0.000    0.000    0.000 generic.py:5467(__setattr__)
        4    0.000    0.000    0.000    0.000 generic.py:5522(_protect_consolidate)
        4    0.000    0.000    0.000    0.000 generic.py:5534(_consolidate_inplace)
        4    0.000    0.000    0.000    0.000 generic.py:5538(f)
        4    0.000    0.000    0.001    0.000 generic.py:7416(isna)
        1    0.000    0.000    0.001    0.001 generic.py:852(DataFrameGroupBy)
       28    0.000    0.000    0.000    0.000 generic.py:97(generate_property)
       40    0.000    0.000    0.006    0.000 genericpath.py:16(exists)
       12    0.000    0.000    0.002    0.000 genericpath.py:39(isdir)
        1    0.000    0.000    8.307    8.307 get_stocks.py:1(<module>)
        4    0.000    0.000    0.000    0.000 get_stocks.py:19(isupdown)
        2    0.000    0.000    7.069    3.534 get_stocks.py:25(GetStock)
        1    0.000    0.000    0.000    0.000 getlimits.py:1(<module>)
       30    0.000    0.000    0.000    0.000 getlimits.py:17(_fr0)
       30    0.000    0.000    0.000    0.000 getlimits.py:25(_fr1)
        1    0.000    0.000    0.000    0.000 getlimits.py:295(finfo)
        1    0.000    0.000    0.000    0.000 getlimits.py:32(MachArLike)
        6    0.000    0.000    0.001    0.000 getlimits.py:35(__init__)
       36    0.000    0.000    0.000    0.000 getlimits.py:39(<lambda>)
       30    0.000    0.000    0.000    0.000 getlimits.py:40(<lambda>)
       30    0.000    0.000    0.000    0.000 getlimits.py:41(<lambda>)
        1    0.000    0.000    0.000    0.000 getlimits.py:461(iinfo)
       24    0.000    0.000    0.000    0.000 getlimits.py:514(__init__)
        5    0.000    0.000    0.000    0.000 getlimits.py:525(min)
       17    0.000    0.000    0.000    0.000 getlimits.py:538(max)
        8    0.000    0.000    0.000    0.000 getlimits.py:90(_register_type)
        1    0.000    0.000    0.001    0.001 getlimits.py:94(_register_known_types)
        1    0.000    0.000    0.001    0.001 glob.py:1(<module>)
        1    0.000    0.000    0.001    0.001 glob.py:11(glob)
        2    0.000    0.000    0.000    0.000 glob.py:117(_iterdir)
        1    0.000    0.000    0.000    0.000 glob.py:134(_listdir)
        3    0.000    0.000    0.000    0.000 glob.py:152(has_magic)
        2    0.000    0.000    0.000    0.000 glob.py:159(_ishidden)
        1    0.000    0.000    0.000    0.000 glob.py:24(iglob)
        2    0.000    0.000    0.001    0.001 glob.py:42(_iglob)
        1    0.000    0.000    0.001    0.001 glob.py:82(_glob1)
        2    0.000    0.000    0.000    0.000 glob.py:85(<genexpr>)
        1    0.000    0.000    0.011    0.011 groupby.py:1(<module>)
        1    0.000    0.000    0.002    0.002 groupby.py:1284(GroupBy)
        1    0.000    0.000    0.000    0.000 groupby.py:452(GroupByPlot)
        1    0.000    0.000    0.001    0.001 groupby.py:499(BaseGroupBy)
        1    0.000    0.000    0.001    0.001 grouper.py:1(<module>)
        1    0.000    0.000    0.000    0.000 grouper.py:34(Grouper)
        1    0.000    0.000    0.000    0.000 grouper.py:413(Grouping)
        1    0.000    0.000    0.001    0.001 gzip.py:1(<module>)
        1    0.000    0.000    0.000    0.000 gzip.py:116(BadGzipFile)
        1    0.000    0.000    0.000    0.000 gzip.py:120(GzipFile)
        1    0.000    0.000    0.000    0.000 gzip.py:401(_GzipReader)
        1    0.000    0.000    0.000    0.000 gzip.py:74(_PaddedFile)
        1    0.000    0.000    0.000    0.000 handler.py:1(<module>)
        1    0.000    0.000    0.000    0.000 handler.py:208(DTDHandler)
        1    0.000    0.000    0.000    0.000 handler.py:22(ErrorHandler)
        1    0.000    0.000    0.000    0.000 handler.py:223(EntityResolver)
        1    0.000    0.000    0.000    0.000 handler.py:47(ContentHandler)
        1    0.000    0.000    0.002    0.002 hashing.py:1(<module>)
       14    0.000    0.000    0.000    0.000 hashlib.py:126(__get_openssl_constructor)
        1    0.000    0.000    0.000    0.000 hashlib.py:5(<module>)
        2    0.000    0.000    0.000    0.000 hashlib.py:82(__get_builtin_constructor)
        1    0.000    0.000    0.000    0.000 header.py:179(Header)
        1    0.000    0.000    0.000    0.000 header.py:413(_ValueFormatter)
        1    0.000    0.000    0.006    0.006 header.py:5(<module>)
        1    0.000    0.000    0.000    0.000 header.py:541(_Accumulator)
        1    0.000    0.000    0.000    0.000 hebrewprober.py:128(HebrewProber)
        1    0.000    0.000    0.000    0.000 hebrewprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 helper.py:1(<module>)
        1    0.000    0.000    0.000    0.000 hermite.py:1(<module>)
        1    0.000    0.000    0.000    0.000 hermite.py:1657(Hermite)
        1    0.000    0.000    0.000    0.000 hermite_e.py:1(<module>)
        1    0.000    0.000    0.000    0.000 hermite_e.py:1649(HermiteE)
        1    0.000    0.000    0.000    0.000 histograms.py:1(<module>)
        1    0.000    0.000    0.004    0.004 hmac.py:1(<module>)
      257    0.000    0.000    0.000    0.000 hmac.py:18(<genexpr>)
      257    0.000    0.000    0.000    0.000 hmac.py:19(<genexpr>)
        1    0.000    0.000    0.000    0.000 hmac.py:27(HMAC)
       22    0.000    0.000    0.000    0.000 hooks.py:17(default_hooks)
       22    0.000    0.000    0.000    0.000 hooks.py:18(<dictcomp>)
       10    0.000    0.000    0.000    0.000 hooks.py:23(dispatch_hook)
        1    0.000    0.000    0.000    0.000 hooks.py:3(<module>)
        1    0.000    0.000    0.001    0.001 html.py:1(<module>)
        1    0.000    0.000    0.000    0.000 html.py:142(_HtmlFrameParser)
        2    0.000    0.000    0.000    0.000 html.py:198(__init__)
        2    0.000    0.000    0.215    0.107 html.py:205(parse_tables)
        6    0.000    0.000    0.002    0.000 html.py:214(<genexpr>)
       48    0.000    0.000    0.000    0.000 html.py:216(_attr_getter)
        2    0.000    0.000    0.211    0.106 html.py:33(_importers)
        4    0.000    0.000    0.002    0.001 html.py:373(_parse_thead_tbody_tfoot)
        4    0.000    0.000    0.000    0.000 html.py:402(row_is_all_th)
        8    0.000    0.000    0.000    0.000 html.py:403(<genexpr>)
       12    0.000    0.000    0.001    0.000 html.py:418(_expand_colspan_rowspan)
        2    0.000    0.000    0.000    0.000 html.py:490(_handle_hidden_tables)
        2    0.000    0.000    0.000    0.000 html.py:509(<listcomp>)
        1    0.000    0.000    0.000    0.000 html.py:517(_BeautifulSoupHtml5LibFrameParser)
        1    0.000    0.000    0.000    0.000 html.py:629(_LxmlFrameParser)
       24    0.000    0.000    0.000    0.000 html.py:64(_remove_whitespace)
        2    0.000    0.000    0.000    0.000 html.py:648(__init__)
       24    0.000    0.000    0.000    0.000 html.py:651(_text_getter)
       16    0.001    0.000    0.001    0.000 html.py:654(_parse_td)
        2    0.001    0.001    0.002    0.001 html.py:659(_parse_tables)
        4    0.000    0.000    0.000    0.000 html.py:687(_equals_tag)
        2    0.001    0.000    0.213    0.107 html.py:690(_build_doc)
        4    0.000    0.000    0.000    0.000 html.py:738(_parse_thead_tr)
        4    0.000    0.000    0.000    0.000 html.py:756(_parse_tbody_tr)
        4    0.000    0.000    0.000    0.000 html.py:762(_parse_tfoot_tr)
        4    0.000    0.000    0.012    0.003 html.py:766(_expand_elements)
        4    0.000    0.000    0.000    0.000 html.py:767(<listcomp>)
        4    0.000    0.000    0.029    0.007 html.py:777(_data_to_frame)
        2    0.000    0.000    0.000    0.000 html.py:809(_parser_dispatch)
        4    0.000    0.000    0.000    0.000 html.py:83(_get_skiprows)
        2    0.000    0.000    0.000    0.000 html.py:855(_validate_flavor)
        2    0.002    0.001    0.248    0.124 html.py:883(_parse)
        2    0.000    0.000    0.460    0.230 html.py:924(read_html)
        1    0.000    0.000    0.037    0.037 html5parser.py:1(<module>)
        1    0.000    0.000    0.000    0.000 html5parser.py:2793(ParseError)
        1    0.000    0.000    0.000    0.000 html5parser.py:86(HTMLParser)
        1    0.000    0.000    0.000    0.000 idna.py:146(Codec)
       18    0.000    0.000    0.000    0.000 idna.py:147(encode)
        1    0.000    0.000    0.000    0.000 idna.py:218(IncrementalEncoder)
        1    0.000    0.000    0.000    0.000 idna.py:253(IncrementalDecoder)
        1    0.000    0.000    0.000    0.000 idna.py:292(StreamWriter)
        1    0.000    0.000    0.000    0.000 idna.py:295(StreamReader)
        1    0.000    0.000    0.001    0.001 idna.py:3(<module>)
        1    0.000    0.000    0.000    0.000 idna.py:300(getregentry)
        1    0.000    0.000    0.000    0.000 idnadata.py:3(<module>)
        1    0.000    0.000    0.022    0.022 index_tricks.py:1(<module>)
        1    0.000    0.000    0.000    0.000 index_tricks.py:110(nd_grid)
        2    0.000    0.000    0.000    0.000 index_tricks.py:145(__init__)
        1    0.000    0.000    0.000    0.000 index_tricks.py:210(MGridClass)
        1    0.000    0.000    0.000    0.000 index_tricks.py:253(__init__)
        1    0.000    0.000    0.000    0.000 index_tricks.py:260(OGridClass)
        1    0.000    0.000    0.000    0.000 index_tricks.py:300(__init__)
        1    0.000    0.000    0.000    0.000 index_tricks.py:307(AxisConcatenator)
        3    0.000    0.000    0.000    0.000 index_tricks.py:317(__init__)
        1    0.000    0.000    0.000    0.000 index_tricks.py:430(RClass)
        1    0.000    0.000    0.000    0.000 index_tricks.py:525(__init__)
        1    0.000    0.000    0.000    0.000 index_tricks.py:532(CClass)
        1    0.000    0.000    0.000    0.000 index_tricks.py:557(__init__)
        1    0.000    0.000    0.000    0.000 index_tricks.py:564(ndenumerate)
        1    0.000    0.000    0.000    0.000 index_tricks.py:613(ndindex)
        1    0.000    0.000    0.000    0.000 index_tricks.py:710(IndexExpression)
        2    0.000    0.000    0.000    0.000 index_tricks.py:754(__init__)
        2    0.000    0.000    0.003    0.001 indexers.py:1(<module>)
        1    0.000    0.000    0.000    0.000 indexers.py:116(VariableOffsetWindowIndexer)
        1    0.000    0.000    0.000    0.000 indexers.py:198(ExpandingIndexer)
        1    0.000    0.000    0.000    0.000 indexers.py:216(FixedForwardWindowIndexer)
        1    0.000    0.000    0.000    0.000 indexers.py:266(GroupbyIndexer)
        1    0.000    0.000    0.000    0.000 indexers.py:349(ExponentialMovingWindowIndexer)
        4    0.000    0.000    0.000    0.000 indexers.py:363(check_array_indexer)
        1    0.000    0.000    0.000    0.000 indexers.py:39(BaseIndexer)
        1    0.000    0.000    0.000    0.000 indexers.py:69(FixedWindowIndexer)
        1    0.000    0.000    0.000    0.000 indexers.py:99(VariableWindowIndexer)
        1    0.000    0.000    0.004    0.004 indexing.py:1(<module>)
        1    0.000    0.000    0.000    0.000 indexing.py:1329(_iLocIndexer)
        1    0.000    0.000    0.000    0.000 indexing.py:2085(_ScalarAccessIndexer)
        1    0.000    0.000    0.000    0.000 indexing.py:2121(_AtIndexer)
        1    0.000    0.000    0.000    0.000 indexing.py:2170(_iAtIndexer)
        4    0.000    0.000    0.000    0.000 indexing.py:2238(check_bool_indexer)
        1    0.000    0.000    0.000    0.000 indexing.py:47(_IndexSlice)
        1    0.000    0.000    0.000    0.000 indexing.py:598(_LocationIndexer)
        1    0.000    0.000    0.000    0.000 indexing.py:917(_LocIndexer)
        1    0.000    0.000    0.000    0.000 indexing.py:94(IndexingError)
        1    0.000    0.000    0.000    0.000 indexing.py:98(IndexingMixin)
        1    0.000    0.000    0.000    0.000 inference.py:1(<module>)
        8    0.000    0.000    0.000    0.000 inference.py:185(is_array_like)
       16    0.000    0.000    0.000    0.000 inference.py:263(is_dict_like)
       48    0.000    0.000    0.000    0.000 inference.py:289(<genexpr>)
      245    0.000    0.000    0.000    0.000 inference.py:322(is_hashable)
        6    0.000    0.000    0.000    0.000 inference.py:96(is_file_like)
        1    0.000    0.000    0.001    0.001 info.py:1(<module>)
        1    0.000    0.000    0.000    0.000 info.py:223(DataFrameInfo)
        1    0.000    0.000    0.000    0.000 info.py:299(InfoPrinterAbstract)
        1    0.000    0.000    0.000    0.000 info.py:317(DataFrameInfoPrinter)
        1    0.000    0.000    0.000    0.000 info.py:398(TableBuilderAbstract)
        1    0.000    0.000    0.000    0.000 info.py:454(DataFrameTableBuilder)
        1    0.000    0.000    0.000    0.000 info.py:505(DataFrameTableBuilderNonVerbose)
        1    0.000    0.000    0.000    0.000 info.py:523(TableBuilderVerboseMixin)
        1    0.000    0.000    0.000    0.000 info.py:616(DataFrameTableBuilderVerbose)
        1    0.000    0.000    0.000    0.000 info.py:94(BaseInfo)
        1    0.000    0.000    0.000    0.000 inspect.py:1129(getfullargspec)
        2    0.000    0.000    0.000    0.000 inspect.py:159(isfunction)
        1    0.000    0.000    0.000    0.000 inspect.py:2150(_signature_from_function)
        1    0.000    0.000    0.000    0.000 inspect.py:2244(_signature_from_callable)
       42    0.000    0.000    0.000    0.000 inspect.py:2515(__init__)
       57    0.000    0.000    0.000    0.000 inspect.py:2565(name)
       56    0.000    0.000    0.000    0.000 inspect.py:2569(default)
       29    0.000    0.000    0.000    0.000 inspect.py:2573(annotation)
       42    0.000    0.000    0.000    0.000 inspect.py:2577(kind)
        4    0.000    0.000    0.000    0.000 inspect.py:2798(__init__)
       16    0.000    0.000    0.000    0.000 inspect.py:2847(<genexpr>)
        1    0.000    0.000    0.000    0.000 inspect.py:2882(parameters)
        2    0.000    0.000    0.000    0.000 inspect.py:2886(return_annotation)
       28    0.001    0.000    0.001    0.000 inspect.py:626(cleandoc)
        1    0.000    0.000    0.000    0.000 integer.py:1(<module>)
        1    0.000    0.000    0.000    0.000 integer.py:265(IntegerArray)
        1    0.000    0.000    0.000    0.000 integer.py:36(_IntegerDtype)
        1    0.000    0.000    0.000    0.000 integer.py:604(Int8Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:611(Int16Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:618(Int32Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:625(Int64Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:632(UInt8Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:639(UInt16Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:646(UInt32Dtype)
        1    0.000    0.000    0.000    0.000 integer.py:653(UInt64Dtype)
        2    0.000    0.000    0.029    0.015 interval.py:1(<module>)
        3    0.000    0.000    0.000    0.000 interval.py:1063(_setop)
        3    0.000    0.000    0.000    0.000 interval.py:118(setop_check)
        1    0.000    0.000    0.001    0.001 interval.py:130(IntervalArray)
        1    0.000    0.000    0.001    0.001 interval.py:142(IntervalIndex)
        1    0.000    0.000    0.000    0.000 intranges.py:1(<module>)
        1    0.000    0.000    0.000    0.000 invalid.py:1(<module>)
       34    0.000    0.000    0.000    0.000 invalid.py:38(make_invalid_op)
        1    0.000    0.000    0.001    0.001 isoparser.py:2(<module>)
        4    0.000    0.000    0.000    0.000 isoparser.py:22(_takes_ascii)
        1    0.000    0.000    0.001    0.001 isoparser.py:42(isoparser)
        1    0.000    0.000    0.000    0.000 isoparser.py:43(__init__)
        1    0.000    0.000    0.000    0.000 iterators.py:5(<module>)
        1    0.000    0.000    0.000    0.000 jisfreq.py:44(<module>)
        1    0.000    0.000    0.000    0.000 jpcntx.py:116(JapaneseContextAnalysis)
        1    0.000    0.000    0.000    0.000 jpcntx.py:183(SJISContextAnalysis)
        1    0.000    0.000    0.000    0.000 jpcntx.py:212(EUCJPContextAnalysis)
        1    0.000    0.000    0.000    0.000 jpcntx.py:30(<module>)
        1    0.000    0.000    0.000    0.000 labels.py:1(<module>)
        1    0.000    0.000    0.000    0.000 laguerre.py:1(<module>)
        1    0.000    0.000    0.000    0.000 laguerre.py:1605(Laguerre)
        1    0.000    0.000    0.001    0.001 langbulgarianmodel.py:4(<module>)
        1    0.000    0.000    0.000    0.000 langgreekmodel.py:4(<module>)
        1    0.001    0.001    0.001    0.001 langhebrewmodel.py:4(<module>)
        1    0.000    0.000    0.000    0.000 langrussianmodel.py:4(<module>)
        1    0.000    0.000    0.000    0.000 langthaimodel.py:4(<module>)
        1    0.000    0.000    0.000    0.000 langturkishmodel.py:4(<module>)
        1    0.000    0.000    0.000    0.000 latin1prober.py:29(<module>)
        1    0.000    0.000    0.000    0.000 latin1prober.py:96(Latin1Prober)
        1    0.000    0.000    0.000    0.000 lazy.py:1(<module>)
        1    0.000    0.000    0.000    0.000 lazy.py:118(<listcomp>)
        1    0.000    0.000    0.000    0.000 lazy.py:121(LazySet)
        2    0.000    0.000    0.000    0.000 lazy.py:139(__new__)
        2    0.000    0.000    0.000    0.000 lazy.py:144(LazySet)
       84    0.000    0.000    0.000    0.000 lazy.py:149(lazy)
        1    0.000    0.000    0.000    0.000 lazy.py:16(LazyDict)
        1    0.000    0.000    0.000    0.000 lazy.py:172(<listcomp>)
        1    0.000    0.000    0.000    0.000 lazy.py:71(LazyList)
        2    0.000    0.000    0.000    0.000 lazy.py:84(__new__)
        2    0.000    0.000    0.000    0.000 lazy.py:91(LazyList)
       62    0.000    0.000    0.000    0.000 lazy.py:96(lazy)
        1    0.000    0.000    0.000    0.000 legendre.py:1(<module>)
        1    0.000    0.000    0.000    0.000 legendre.py:1618(Legendre)
        1    0.000    0.000    0.009    0.009 linalg.py:1(<module>)
        1    0.000    0.000    0.000    0.000 linalg.py:43(LinAlgError)
        1    0.000    0.000    0.000    0.000 linalg.py:73(_determine_error_states)
        2    0.000    0.000    0.000    0.000 locale.py:386(normalize)
        2    0.000    0.000    0.000    0.000 locale.py:469(_parse_localename)
        2    0.000    0.000    0.000    0.000 locale.py:577(getlocale)
        1    0.000    0.000    0.000    0.000 localization.py:1(<module>)
        1    0.000    0.000    0.002    0.002 lzma.py:1(<module>)
        1    0.000    0.000    0.000    0.000 lzma.py:38(LZMAFile)
        1    0.000    0.000    0.000    0.000 machar.py:1(<module>)
        1    0.000    0.000    0.000    0.000 machar.py:16(MachAr)
        1    0.000    0.000    0.002    0.002 managers.py:1(<module>)
       20    0.000    0.000    0.001    0.000 managers.py:126(__init__)
       20    0.000    0.000    0.000    0.000 managers.py:132(<listcomp>)
        1    0.000    0.000    0.000    0.000 managers.py:1536(SingleBlockManager)
       20    0.000    0.000    0.000    0.000 managers.py:1545(__init__)
       16    0.000    0.000    0.001    0.000 managers.py:1577(from_array)
       76    0.000    0.000    0.000    0.000 managers.py:1588(_block)
        4    0.000    0.000    0.000    0.000 managers.py:1602(get_slice)
        4    0.000    0.000    0.000    0.000 managers.py:1611(index)
       28    0.000    0.000    0.000    0.000 managers.py:1615(dtype)
       36    0.000    0.000    0.000    0.000 managers.py:1626(internal_values)
        4    0.000    0.000    0.000    0.000 managers.py:1634(is_consolidated)
       20    0.000    0.000    0.010    0.000 managers.py:1690(create_block_manager_from_arrays)
       60    0.000    0.000    0.000    0.000 managers.py:1695(<genexpr>)
       20    0.000    0.000    0.000    0.000 managers.py:1699(<listcomp>)
       20    0.001    0.000    0.008    0.000 managers.py:1733(_form_blocks)
        4    0.000    0.000    0.000    0.000 managers.py:1829(_simple_blockify)
       18    0.000    0.000    0.002    0.000 managers.py:1844(_multi_blockify)
       98    0.000    0.000    0.000    0.000 managers.py:1847(<lambda>)
       22    0.000    0.000    0.001    0.000 managers.py:1860(_stack_arrays)
      104    0.000    0.000    0.000    0.000 managers.py:1863(_asarray_compat)
       22    0.000    0.000    0.000    0.000 managers.py:1869(_shape_compat)
       20    0.000    0.000    0.000    0.000 managers.py:206(shape)
       60    0.000    0.000    0.000    0.000 managers.py:208(<genexpr>)
       22    0.000    0.000    0.000    0.000 managers.py:210(ndim)
       20    0.000    0.000    0.000    0.000 managers.py:253(items)
       20    0.000    0.000    0.000    0.000 managers.py:318(_verify_integrity)
       42    0.000    0.000    0.000    0.000 managers.py:320(<genexpr>)
        1    0.000    0.000    0.000    0.000 managers.py:63(BlockManager)
       20    0.000    0.000    0.000    0.000 managers.py:681(is_consolidated)
       20    0.000    0.000    0.000    0.000 managers.py:689(_consolidate_check)
       20    0.000    0.000    0.000    0.000 managers.py:690(<listcomp>)
        4    0.000    0.000    0.000    0.000 managers.py:975(consolidate)
       20    0.000    0.000    0.000    0.000 managers.py:991(_consolidate_inplace)
        1    0.000    0.000    0.000    0.000 mask_ops.py:1(<module>)
        1    0.000    0.000    0.007    0.007 masked.py:1(<module>)
        1    0.000    0.000    0.000    0.000 masked.py:35(BaseMaskedDtype)
        1    0.000    0.000    0.000    0.000 masked.py:72(BaseMaskedArray)
        1    0.000    0.000    0.000    0.000 masked_reductions.py:1(<module>)
        1    0.000    0.000    0.000    0.000 mbcharsetprober.py:30(<module>)
        1    0.000    0.000    0.000    0.000 mbcharsetprober.py:34(MultiByteCharSetProber)
        1    0.000    0.000    0.014    0.014 mbcsgroupprober.py:30(<module>)
        1    0.000    0.000    0.000    0.000 mbcsgroupprober.py:41(MBCSGroupProber)
        1    0.000    0.000    0.000    0.000 mbcssm.py:28(<module>)
        1    0.000    0.000    0.001    0.001 melt.py:1(<module>)
        1    0.000    0.000    0.000    0.000 memmap.py:1(<module>)
        1    0.000    0.000    0.000    0.000 memmap.py:22(memmap)
        1    0.000    0.000    0.001    0.001 merge.py:1(<module>)
        1    0.000    0.000    0.000    0.000 merge.py:1538(_OrderedMerge)
        1    0.000    0.000    0.000    0.000 merge.py:1632(_AsOfMerge)
        1    0.000    0.000    0.000    0.000 merge.py:573(_MergeOperation)
        1    0.000    0.000    0.001    0.001 message.py:105(Message)
        1    0.000    0.000    0.000    0.000 message.py:1168(EmailMessage)
       20    0.000    0.000    0.000    0.000 message.py:120(__init__)
       20    0.000    0.000    0.000    0.000 message.py:181(is_multipart)
       10    0.000    0.000    0.000    0.000 message.py:213(get_payload)
       40    0.000    0.000    0.000    0.000 message.py:29(_splitparam)
       10    0.000    0.000    0.000    0.000 message.py:303(set_payload)
       10    0.000    0.000    0.000    0.000 message.py:451(items)
       10    0.000    0.000    0.000    0.000 message.py:459(<listcomp>)
       80    0.000    0.000    0.001    0.000 message.py:462(get)
      192    0.000    0.000    0.000    0.000 message.py:479(set_raw)
       56    0.000    0.000    0.001    0.000 message.py:497(get_all)
        1    0.000    0.000    0.004    0.004 message.py:5(<module>)
       40    0.000    0.000    0.001    0.000 message.py:564(get_content_type)
       30    0.000    0.000    0.000    0.000 message.py:588(get_content_maintype)
        1    0.000    0.000    0.000    0.000 message.py:945(MIMEPart)
        1    0.000    0.000    0.000    0.000 methods.py:1(<module>)
        2    0.000    0.000    0.000    0.000 methods.py:122(<dictcomp>)
        2    0.000    0.000    0.000    0.000 methods.py:126(_add_methods)
        2    0.000    0.000    0.000    0.000 methods.py:20(_get_method_wrappers)
        2    0.000    0.000    0.007    0.003 methods.py:52(add_flex_arithmetic_methods)
        8    0.000    0.000    0.000    0.000 methods.py:72(<genexpr>)
        2    0.000    0.000    0.007    0.003 methods.py:77(_create_methods)
        1    0.000    0.000    0.002    0.002 mimetypes.py:1(<module>)
        1    0.000    0.000    0.000    0.000 mimetypes.py:384(_default_mime_types)
        1    0.000    0.000    0.000    0.000 mimetypes.py:58(MimeTypes)
        3    0.000    0.000    0.003    0.001 missing.py:1(<module>)
       10    0.000    0.000    0.001    0.000 missing.py:133(_isna)
        4    0.000    0.000    0.000    0.000 missing.py:136(dispatch_fill_zeros)
        6    0.000    0.000    0.001    0.000 missing.py:202(_isna_ndarraylike)
        4    0.000    0.000    0.000    0.000 missing.py:244(_isna_string_dtype)
        8    0.000    0.000    0.001    0.000 missing.py:367(array_equivalent)
       10    0.000    0.000    0.001    0.000 missing.py:50(isna)
        4    0.000    0.000    0.000    0.000 missing.py:64(clean_fill_method)
        4    0.000    0.000    0.000    0.000 missing.py:721(clean_reindex_fill_method)
        1    0.000    0.000    0.000    0.000 mixins.py:1(<module>)
       20    0.000    0.000    0.000    0.000 mixins.py:16(_binary_method)
       14    0.000    0.000    0.000    0.000 mixins.py:26(_reflected_binary_method)
       13    0.000    0.000    0.000    0.000 mixins.py:36(_inplace_binary_method)
       13    0.000    0.000    0.000    0.000 mixins.py:44(_numeric_methods)
        4    0.000    0.000    0.000    0.000 mixins.py:51(_unary_method)
        1    0.000    0.000    0.000    0.000 mixins.py:59(NDArrayOperatorsMixin)
        1    0.000    0.000    0.000    0.000 models.py:174(RequestHooksMixin)
        6    0.000    0.000    0.000    0.000 models.py:175(register_hook)
        6    0.000    0.000    0.000    0.000 models.py:184(<genexpr>)
        1    0.000    0.000    0.000    0.000 models.py:198(Request)
        6    0.000    0.000    0.000    0.000 models.py:226(__init__)
        1    0.000    0.000    0.000    0.000 models.py:272(PreparedRequest)
       10    0.000    0.000    0.000    0.000 models.py:293(__init__)
        1    0.000    0.000    0.006    0.006 models.py:3(<module>)
        6    0.000    0.000    0.003    0.001 models.py:310(prepare)
        4    0.000    0.000    0.000    0.000 models.py:331(copy)
        6    0.000    0.000    0.000    0.000 models.py:342(prepare_method)
        6    0.000    0.000    0.002    0.000 models.py:358(prepare_url)
        6    0.000    0.000    0.000    0.000 models.py:444(prepare_headers)
        6    0.000    0.000    0.000    0.000 models.py:455(prepare_body)
        6    0.000    0.000    0.000    0.000 models.py:524(prepare_content_length)
        6    0.000    0.000    0.000    0.000 models.py:537(prepare_auth)
       10    0.000    0.000    0.002    0.000 models.py:559(prepare_cookies)
        6    0.000    0.000    0.000    0.000 models.py:579(prepare_hooks)
        1    0.000    0.000    0.000    0.000 models.py:589(Response)
       10    0.000    0.000    0.001    0.000 models.py:599(__init__)
        1    0.000    0.000    0.000    0.000 models.py:60(RequestEncodingMixin)
       10    0.000    0.000    0.000    0.000 models.py:61(path_url)
       14    0.000    0.000    0.000    0.000 models.py:710(is_redirect)
       10    0.000    0.000    0.000    0.000 models.py:732(iter_content)
      199    0.000    0.000    1.679    0.008 models.py:749(generate)
       26    0.000    0.000    1.682    0.065 models.py:818(content)
        6    0.000    0.000    0.000    0.000 models.py:82(_encode_params)
        6    0.010    0.002    0.010    0.002 models.py:838(text)
        4    0.000    0.000    0.000    0.000 models.py:945(close)
        1    0.000    0.000    0.002    0.002 multi.py:1(<module>)
        1    0.000    0.000    0.000    0.000 multi.py:120(MultiIndexPyIntEngine)
        1    0.000    0.000    0.000    0.000 multi.py:161(names_compat)
        1    0.000    0.000    0.001    0.001 multi.py:180(MultiIndex)
        1    0.000    0.000    0.007    0.007 multi.py:22(<module>)
        1    0.000    0.000    0.000    0.000 multi.py:81(MultiIndexUIntEngine)
        1    0.000    0.000    0.022    0.022 multiarray.py:1(<module>)
        5    0.000    0.000    0.000    0.000 multiarray.py:1071(copyto)
        1    0.000    0.000    0.000    0.000 multiarray.py:148(concatenate)
        1    0.000    0.000    0.001    0.001 nanfunctions.py:1(<module>)
        1    0.000    0.000    0.002    0.002 nanops.py:1(<module>)
        4    0.000    0.000    0.000    0.000 nanops.py:1367(_maybe_null_out)
        4    0.000    0.000    0.000    0.000 nanops.py:1406(check_below_min_count)
        6    0.000    0.000    0.000    0.000 nanops.py:1558(make_nancomp)
        8    0.000    0.000    0.000    0.000 nanops.py:174(_get_fill_value)
        8    0.000    0.000    0.000    0.000 nanops.py:199(_maybe_get_mask)
        8    0.000    0.000    0.000    0.000 nanops.py:243(_get_values)
       12    0.000    0.000    0.000    0.000 nanops.py:330(_na_ok_dtype)
        4    0.000    0.000    0.000    0.000 nanops.py:373(_datetimelike_compat)
        4    0.000    0.000    0.001    0.000 nanops.py:379(new_func)
        1    0.000    0.000    0.000    0.000 nanops.py:44(set_use_bottleneck)
        4    0.000    0.000    0.000    0.000 nanops.py:442(nanany)
        1    0.000    0.000    0.000    0.000 nanops.py:54(disallow)
       11    0.000    0.000    0.000    0.000 nanops.py:55(__init__)
       29    0.000    0.000    0.000    0.000 nanops.py:57(<genexpr>)
       11    0.000    0.000    0.000    0.000 nanops.py:62(__call__)
        1    0.000    0.000    0.000    0.000 nanops.py:86(bottleneck_switch)
        6    0.000    0.000    0.000    0.000 nanops.py:87(__init__)
        6    0.000    0.000    0.000    0.000 nanops.py:91(__call__)
        2    0.000    0.000    0.000    0.000 nanops.py:955(_nanminmax)
        4    0.000    0.000    0.001    0.000 nanops.py:956(reduction)
        4    0.000    0.000    0.001    0.000 nanops.py:99(f)
        1    0.000    0.000    0.002    0.002 netrc.py:1(<module>)
        1    0.000    0.000    0.000    0.000 netrc.py:10(NetrcParseError)
        1    0.000    0.000    0.000    0.000 netrc.py:22(netrc)
        1    0.000    0.000    0.004    0.004 npyio.py:1(<module>)
        1    0.000    0.000    0.000    0.000 npyio.py:115(NpzFile)
        1    0.000    0.000    0.000    0.000 npyio.py:51(BagObj)
       17    0.000    0.000    0.000    0.000 ntpath.py:124(splitdrive)
        6    0.000    0.000    0.000    0.000 ntpath.py:180(split)
        4    0.000    0.000    0.000    0.000 ntpath.py:221(dirname)
       28    0.000    0.000    0.000    0.000 ntpath.py:289(expanduser)
       26    0.000    0.000    0.000    0.000 ntpath.py:34(_get_bothseps)
        3    0.000    0.000    0.000    0.000 ntpath.py:44(normcase)
        3    0.000    0.000    0.000    0.000 ntpath.py:450(normpath)
        3    0.000    0.000    0.000    0.000 ntpath.py:524(abspath)
        4    0.000    0.000    0.000    0.000 ntpath.py:77(join)
        1    0.000    0.000    0.000    0.000 nturl2path.py:1(<module>)
        3    0.000    0.000    0.001    0.000 numba_.py:1(<module>)
        1    0.000    0.000    0.000    0.000 numbers.py:12(Number)
        1    0.000    0.000    0.000    0.000 numbers.py:147(Real)
        1    0.000    0.000    0.000    0.000 numbers.py:267(Rational)
        1    0.000    0.000    0.000    0.000 numbers.py:294(Integral)
        1    0.000    0.000    0.000    0.000 numbers.py:32(Complex)
        1    0.000    0.000    0.000    0.000 numbers.py:4(<module>)
        4    0.001    0.000    0.025    0.006 numeric.py:1(<module>)
        1    0.000    0.000    0.000    0.000 numeric.py:149(ones)
       20    0.000    0.000    0.000    0.000 numeric.py:164(_is_all_dates)
        1    0.000    0.000    0.000    0.000 numeric.py:19(NumericArray)
       12    0.000    0.000    0.000    0.000 numeric.py:2381(_array_equal_dispatcher)
       12    0.000    0.000    0.000    0.000 numeric.py:2385(array_equal)
        1    0.000    0.000    0.000    0.000 numeric.py:239(IntegerIndex)
        6    0.001    0.000    0.001    0.000 numeric.py:2514(extend_all)
        4    0.000    0.000    0.000    0.000 numeric.py:260(__contains__)
        4    0.000    0.000    0.000    0.000 numeric.py:289(full)
        1    0.000    0.000    0.000    0.000 numeric.py:290(Int64Index)
        1    0.000    0.000    0.000    0.000 numeric.py:306(UInt64Index)
        1    0.000    0.000    0.000    0.000 numeric.py:337(Float64Index)
        1    0.000    0.000    0.000    0.000 numeric.py:35(NumericIndex)
       12    0.000    0.000    0.000    0.000 numeric.py:47(__new__)
        1    0.000    0.000    0.000    0.000 numeric.py:60(ComplexWarning)
       20    0.000    0.000    0.000    0.000 numeric.py:78(_validate_dtype)
        1    0.000    0.000    0.006    0.006 numerictypes.py:1(<module>)
       28    0.000    0.000    0.000    0.000 numerictypes.py:284(issubclass_)
       14    0.000    0.000    0.000    0.000 numerictypes.py:358(issubdtype)
        1    0.000    0.000    0.000    0.000 numerictypes.py:426(_typedict)
        1    0.000    0.000    0.000    0.000 numerictypes.py:442(_construct_lookups)
       24    0.000    0.000    0.000    0.000 numerictypes.py:515(_scalar_type_key)
        1    0.000    0.000    0.000    0.000 numerictypes.py:590(_register_types)
        1    0.000    0.000    0.000    0.000 numpy_.py:1(<module>)
        1    0.000    0.000    0.000    0.000 numpy_.py:115(PandasArray)
        8    0.000    0.000    0.000    0.000 numpy_.py:156(__init__)
        1    0.000    0.000    0.000    0.000 numpy_.py:20(PandasDtype)
        4    0.000    0.000    0.000    0.000 numpy_.py:202(__array__)
        4    0.000    0.000    0.000    0.000 numpy_.py:371(to_numpy)
        8    0.000    0.000    0.000    0.000 numpy_.py:41(__init__)
        1    0.000    0.000    0.000    0.000 object_array.py:1(<module>)
        1    0.000    0.000    0.000    0.000 object_array.py:20(ObjectStringArrayMixin)
        1    0.000    0.000    0.000    0.000 offsets.py:1(<module>)
        3    0.000    0.000    0.007    0.002 ops.py:1(<module>)
        1    0.000    0.000    0.000    0.000 ops.py:179(Constant)
        1    0.000    0.000    0.000    0.000 ops.py:199(Op)
        1    0.000    0.000    0.000    0.000 ops.py:355(BinOp)
        1    0.000    0.000    0.000    0.000 ops.py:511(Div)
        1    0.000    0.000    0.000    0.000 ops.py:540(UnaryOp)
        1    0.000    0.000    0.000    0.000 ops.py:55(UndefinedVariableError)
        1    0.000    0.000    0.000    0.000 ops.py:588(MathCall)
        1    0.000    0.000    0.000    0.000 ops.py:604(FuncNode)
        1    0.000    0.000    0.000    0.000 ops.py:69(Term)
        1    0.000    0.000    0.000    0.000 ops.py:766(BinGrouper)
        1    0.000    0.000    0.000    0.000 ops.py:77(BaseGrouper)
        1    0.000    0.000    0.000    0.000 ops.py:950(DataSplitter)
        1    0.000    0.000    0.000    0.000 ops.py:989(SeriesSplitter)
        1    0.000    0.000    0.000    0.000 ops.py:997(FrameSplitter)
        1    0.000    0.000    0.000    0.000 orc.py:1(<module>)
        2    0.000    0.000    0.000    0.000 os.py:1073(__subclasshook__)
        1    0.000    0.000    0.000    0.000 os.py:1084(__init__)
        1    0.000    0.000    0.000    0.000 os.py:1100(add_dll_directory)
        1    0.000    0.000    0.000    0.000 os.py:44(_get_exports_list)
        1    0.000    0.000    0.000    0.000 os.py:48(<listcomp>)
     2243    0.002    0.000    0.005    0.000 os.py:674(__getitem__)
        2    0.000    0.000    0.000    0.000 os.py:682(__setitem__)
        2    0.000    0.000    0.000    0.000 os.py:688(__delitem__)
     2160    0.001    0.000    0.001    0.000 os.py:697(__iter__)
     2249    0.001    0.000    0.001    0.000 os.py:740(check_str)
     2247    0.002    0.000    0.003    0.000 os.py:746(encodekey)
        1    0.000    0.000    0.018    0.018 overrides.py:1(<module>)
       75    0.000    0.000    0.000    0.000 overrides.py:111(set_module)
       75    0.000    0.000    0.000    0.000 overrides.py:122(decorator)
      316    0.000    0.000    0.000    0.000 overrides.py:141(array_function_dispatch)
      316    0.001    0.000    0.039    0.000 overrides.py:183(decorator)
       23    0.000    0.000    0.000    0.000 overrides.py:219(array_function_from_dispatcher)
       23    0.000    0.000    0.002    0.000 overrides.py:223(decorator)
        9    0.000    0.000    0.000    0.000 overrides.py:24(set_array_function_like_doc)
      286    0.002    0.000    0.006    0.000 overrides.py:89(verify_matching_signatures)
        1    0.000    0.000    0.000    0.000 package_data.py:1(<module>)
        1    0.001    0.001    0.010    0.010 packages.py:1(<module>)
        1    0.000    0.000    0.000    0.000 parquet.py:1(<module>)
        1    0.000    0.000    0.000    0.000 parquet.py:124(PyArrowImpl)
        1    0.000    0.000    0.000    0.000 parquet.py:229(FastParquetImpl)
        1    0.000    0.000    0.000    0.000 parquet.py:88(BaseImpl)
        1    0.000    0.000    0.001    0.001 parse.py:1(<module>)
      550    0.000    0.000    0.000    0.000 parse.py:103(_noop)
      550    0.001    0.000    0.001    0.000 parse.py:114(_coerce_args)
        1    0.000    0.000    0.000    0.000 parse.py:131(_ResultMixinStr)
        1    0.000    0.000    0.000    0.000 parse.py:139(_ResultMixinBytes)
        1    0.000    0.000    0.000    0.000 parse.py:147(_NetlocResultMixinBase)
        6    0.000    0.000    0.000    0.000 parse.py:151(username)
       88    0.000    0.000    0.000    0.000 parse.py:159(hostname)
        1    0.000    0.000    0.000    0.000 parse.py:186(_NetlocResultMixinStr)
        6    0.000    0.000    0.000    0.000 parse.py:189(_userinfo)
       88    0.000    0.000    0.000    0.000 parse.py:201(_hostinfo)
        1    0.000    0.000    0.000    0.000 parse.py:216(_NetlocResultMixinBytes)
        1    0.000    0.000    0.000    0.000 parse.py:321(DefragResult)
        1    0.000    0.000    0.000    0.000 parse.py:329(SplitResult)
        1    0.000    0.000    0.000    0.000 parse.py:334(ParseResult)
       14    0.000    0.000    0.000    0.000 parse.py:336(geturl)
        1    0.000    0.000    0.000    0.000 parse.py:340(DefragResultBytes)
        1    0.000    0.000    0.000    0.000 parse.py:348(SplitResultBytes)
        1    0.000    0.000    0.000    0.000 parse.py:353(ParseResultBytes)
        1    0.000    0.000    0.000    0.000 parse.py:359(_fix_result_transcoding)
      228    0.001    0.000    0.027    0.000 parse.py:372(urlparse)
        8    0.000    0.000    0.000    0.000 parse.py:411(_splitnetloc)
       14    0.000    0.000    0.000    0.000 parse.py:419(_checknetloc)
      270    0.001    0.000    0.025    0.000 parse.py:437(urlsplit)
       24    0.000    0.000    0.000    0.000 parse.py:494(urlunparse)
       24    0.000    0.000    0.000    0.000 parse.py:505(urlunsplit)
        4    0.000    0.000    0.000    0.000 parse.py:524(urljoin)
        6    0.000    0.000    0.000    0.000 parse.py:644(unquote)
        1    0.000    0.000    0.000    0.000 parse.py:797(Quoter)
       70    0.000    0.000    0.001    0.000 parse.py:819(quote)
       70    0.000    0.000    0.000    0.000 parse.py:890(quote_from_bytes)
        6    0.000    0.000    0.000    0.000 parse.py:912(urlencode)
        1    0.000    0.000    0.008    0.008 parser.py:1(<module>)
        1    0.000    0.000    0.000    0.000 parser.py:126(BytesHeaderParser)
        1    0.000    0.000    0.000    0.000 parser.py:16(Parser)
       10    0.000    0.000    0.000    0.000 parser.py:17(__init__)
       10    0.000    0.000    0.004    0.000 parser.py:41(parse)
        1    0.000    0.000    0.024    0.024 parser.py:5(<module>)
       10    0.000    0.000    0.004    0.000 parser.py:59(parsestr)
        1    0.000    0.000    0.000    0.000 parser.py:62(HTMLParser)
        1    0.000    0.000    0.000    0.000 parser.py:71(HeaderParser)
        1    0.000    0.000    0.000    0.000 parser.py:79(BytesParser)
        1    0.000    0.000    0.003    0.003 parsers.py:1(<module>)
        4    0.000    0.000    0.001    0.000 parsers.py:1039(_make_engine)
        4    0.000    0.000    0.015    0.004 parsers.py:1055(read)
        4    0.000    0.000    0.000    0.000 parsers.py:1086(__enter__)
        4    0.000    0.000    0.000    0.000 parsers.py:1089(__exit__)
       12    0.000    0.000    0.000    0.000 parsers.py:1093(_is_index_col)
       12    0.000    0.000    0.000    0.000 parsers.py:1097(_is_potential_multi_index)
       24    0.000    0.000    0.000    0.000 parsers.py:1121(<genexpr>)
        4    0.000    0.000    0.000    0.000 parsers.py:1169(_validate_skipfooter_arg)
        4    0.000    0.000    0.000    0.000 parsers.py:1199(_validate_usecols_arg)
        4    0.000    0.000    0.000    0.000 parsers.py:1249(_validate_parse_dates_arg)
        1    0.000    0.000    0.000    0.000 parsers.py:1271(ParserBase)
        4    0.000    0.000    0.000    0.000 parsers.py:1272(__init__)
        4    0.000    0.000    0.000    0.000 parsers.py:1371(_validate_parse_dates_presence)
        4    0.000    0.000    0.000    0.000 parsers.py:1407(<setcomp>)
        4    0.000    0.000    0.000    0.000 parsers.py:1419(close)
        4    0.000    0.000    0.000    0.000 parsers.py:1423(_has_complex_date_col)
        8    0.000    0.000    0.000    0.000 parsers.py:1509(_maybe_dedup_names)
        4    0.000    0.000    0.000    0.000 parsers.py:1539(_maybe_make_multi_index_columns)
        4    0.000    0.000    0.000    0.000 parsers.py:1545(_make_index)
        4    0.000    0.000    0.001    0.000 parsers.py:1656(_convert_to_ndarrays)
        8    0.000    0.000    0.001    0.000 parsers.py:1729(_infer_types)
        4    0.000    0.000    0.000    0.000 parsers.py:1835(_do_date_conversions)
        1    0.000    0.000    0.000    0.000 parsers.py:1852(CParserWrapper)
        4    0.000    0.000    0.001    0.000 parsers.py:2147(TextParser)
        4    0.000    0.000    0.000    0.000 parsers.py:2207(count_empty_vals)
        4    0.000    0.000    0.000    0.000 parsers.py:2208(<genexpr>)
        1    0.000    0.000    0.000    0.000 parsers.py:2211(PythonParser)
        4    0.000    0.000    0.001    0.000 parsers.py:2212(__init__)
       12    0.000    0.000    0.000    0.000 parsers.py:2228(<lambda>)
        4    0.000    0.000    0.002    0.001 parsers.py:2438(read)
        4    0.000    0.000    0.000    0.000 parsers.py:2482(_exclude_implicit_index)
        4    0.000    0.000    0.000    0.000 parsers.py:2495(<dictcomp>)
        4    0.000    0.000    0.001    0.000 parsers.py:2507(_convert_data)
        4    0.000    0.000    0.000    0.000 parsers.py:2509(_clean_mapping)
        4    0.000    0.000    0.000    0.000 parsers.py:2566(_infer_columns)
        4    0.000    0.000    0.000    0.000 parsers.py:2745(_handle_usecols)
        4    0.000    0.000    0.000    0.000 parsers.py:2779(_buffered_line)
        4    0.000    0.000    0.000    0.000 parsers.py:2788(_check_for_bom)
       12    0.000    0.000    0.000    0.000 parsers.py:2854(_next_line)
       16    0.000    0.000    0.000    0.000 parsers.py:2969(_check_comments)
       16    0.000    0.000    0.000    0.000 parsers.py:2986(_remove_empty_lines)
        4    0.000    0.000    0.000    0.000 parsers.py:3012(_check_thousands)
        4    0.000    0.000    0.000    0.000 parsers.py:3020(_search_replace_num_columns)
        4    0.000    0.000    0.000    0.000 parsers.py:3037(_check_decimal)
        4    0.000    0.000    0.000    0.000 parsers.py:3050(_get_index_name)
        4    0.000    0.000    0.000    0.000 parsers.py:3114(_rows_to_cols)
       16    0.000    0.000    0.000    0.000 parsers.py:3120(<genexpr>)
        4    0.000    0.000    0.000    0.000 parsers.py:3192(_get_lines)
        4    0.000    0.000    0.000    0.000 parsers.py:3274(_make_date_converter)
        4    0.000    0.000    0.000    0.000 parsers.py:3319(_process_date_conversion)
        4    0.000    0.000    0.000    0.000 parsers.py:3407(_clean_na_values)
        4    0.000    0.000    0.000    0.000 parsers.py:3451(_clean_index_names)
        8    0.000    0.000    0.000    0.000 parsers.py:3573(_get_na_values)
        1    0.000    0.000    0.000    0.000 parsers.py:3619(FixedWidthReader)
        1    0.000    0.000    0.000    0.000 parsers.py:3725(FixedWidthFieldParser)
        4    0.000    0.000    0.000    0.000 parsers.py:3850(_extract_dialect)
        4    0.000    0.000    0.000    0.000 parsers.py:394(validate_integer)
        4    0.000    0.000    0.000    0.000 parsers.py:3946(_validate_skipfooter)
        1    0.000    0.000    0.000    0.000 parsers.py:773(TextFileReader)
        4    0.000    0.000    0.001    0.000 parsers.py:780(__init__)
        4    0.000    0.000    0.000    0.000 parsers.py:821(close)
        4    0.000    0.000    0.000    0.000 parsers.py:824(_get_options_with_defaults)
        4    0.000    0.000    0.000    0.000 parsers.py:865(_check_file_or_buffer)
        4    0.000    0.000    0.000    0.000 parsers.py:876(_clean_options)
        1    0.000    0.000    0.000    0.000 parsing.py:1(<module>)
        1    0.000    0.000    0.001    0.001 pathlib.py:1(<module>)
        1    0.000    0.000    0.000    0.000 pathlib.py:1033(PurePosixPath)
        1    0.000    0.000    0.000    0.000 pathlib.py:1043(PureWindowsPath)
        1    0.000    0.000    0.000    0.000 pathlib.py:1056(Path)
        1    0.000    0.000    0.000    0.000 pathlib.py:1069(__new__)
        1    0.000    0.000    0.000    0.000 pathlib.py:1079(_init)
        1    0.000    0.000    0.000    0.000 pathlib.py:120(_WindowsFlavour)
        1    0.000    0.000    0.000    0.000 pathlib.py:136(<setcomp>)
        1    0.000    0.000    0.000    0.000 pathlib.py:137(<setcomp>)
        1    0.000    0.000    0.000    0.000 pathlib.py:146(splitroot)
        1    0.000    0.000    0.000    0.000 pathlib.py:1568(PosixPath)
        1    0.000    0.000    0.000    0.000 pathlib.py:1575(WindowsPath)
        1    0.000    0.000    0.000    0.000 pathlib.py:285(_PosixFlavour)
        1    0.000    0.000    0.000    0.000 pathlib.py:394(_Accessor)
        1    0.000    0.000    0.000    0.000 pathlib.py:399(_NormalAccessor)
        1    0.000    0.000    0.000    0.000 pathlib.py:493(_Selector)
        1    0.000    0.000    0.000    0.000 pathlib.py:518(_TerminatingSelector)
        1    0.000    0.000    0.000    0.000 pathlib.py:524(_PreciseSelector)
        1    0.000    0.000    0.000    0.000 pathlib.py:540(_WildcardSelector)
        1    0.000    0.000    0.000    0.000 pathlib.py:57(_Flavour)
        1    0.000    0.000    0.000    0.000 pathlib.py:571(_RecursiveWildcardSelector)
        2    0.000    0.000    0.000    0.000 pathlib.py:61(__init__)
        1    0.000    0.000    0.000    0.000 pathlib.py:615(_PathParents)
        1    0.000    0.000    0.000    0.000 pathlib.py:64(parse_parts)
        1    0.000    0.000    0.000    0.000 pathlib.py:643(PurePath)
        1    0.000    0.000    0.000    0.000 pathlib.py:672(_parse_args)
        1    0.000    0.000    0.000    0.000 pathlib.py:692(_from_parts)
        1    0.000    0.000    0.000    0.000 pathlib.py:715(_format_parsed_parts)
        1    0.000    0.000    0.000    0.000 pathlib.py:732(__str__)
        2    0.000    0.000    0.001    0.001 period.py:1(<module>)
       12    0.000    0.000    0.000    0.000 period.py:55(_field_accessor)
        1    0.000    0.000    0.001    0.001 period.py:62(PeriodIndex)
        1    0.000    0.000    0.000    0.000 period.py:66(PeriodArray)
        2    0.000    0.000    0.006    0.003 pickle.py:1(<module>)
        1    0.000    0.000    0.000    0.000 pickle.py:1136(_Unpickler)
        1    0.000    0.000    0.001    0.001 pickle.py:197(<listcomp>)
        1    0.000    0.000    0.000    0.000 pickle.py:200(_Framer)
        1    0.000    0.000    0.000    0.000 pickle.py:263(_Unframer)
        1    0.000    0.000    0.000    0.000 pickle.py:407(_Pickler)
        1    0.000    0.000    0.000    0.000 pickle.py:73(PickleError)
        1    0.000    0.000    0.000    0.000 pickle.py:77(PicklingError)
        1    0.000    0.000    0.000    0.000 pickle.py:84(UnpicklingError)
        1    0.000    0.000    0.000    0.000 pickle.py:97(_Stop)
        1    0.000    0.000    0.000    0.000 pickle_compat.py:1(<module>)
        1    0.000    0.000    0.000    0.000 pickle_compat.py:184(Unpickler)
        1    0.000    0.000    0.000    0.000 pickle_compat.py:61(_LoadSparseSeries)
        1    0.000    0.000    0.000    0.000 pickle_compat.py:79(_LoadSparseFrame)
        1    0.000    0.000    0.001    0.001 pivot.py:1(<module>)
        2    0.000    0.000    0.000    0.000 platform.py:1001(_sys_version)
        2    0.000    0.000    0.000    0.000 platform.py:1105(python_implementation)
        1    0.000    0.000    0.000    0.000 platform.py:233(_norm_version)
        1    0.000    0.000    0.112    0.112 platform.py:261(_syscmd_ver)
        1    0.000    0.000    0.016    0.016 platform.py:3(<module>)
        1    0.000    0.000    0.112    0.112 platform.py:359(win32_ver)
        1    0.000    0.000    0.000    0.000 platform.py:581(_node)
        1    0.000    0.000    0.000    0.000 platform.py:728(_get_machine_win32)
        1    0.000    0.000    0.000    0.000 platform.py:741(_Processor)
        5    0.000    0.000    0.000    0.000 platform.py:773(_unknown_as_blank)
        1    0.000    0.000    0.000    0.000 platform.py:779(uname_result)
       30    0.000    0.000    0.112    0.004 platform.py:824(uname)
       15    0.000    0.000    0.112    0.007 platform.py:913(system)
       15    0.000    0.000    0.000    0.000 platform.py:950(machine)
        2    0.000    0.000    0.004    0.002 polynomial.py:1(<module>)
        1    0.000    0.000    0.000    0.000 polynomial.py:1068(poly1d)
        1    0.000    0.000    0.000    0.000 polynomial.py:1471(Polynomial)
        1    0.000    0.000    0.000    0.000 polynomial.py:28(RankWarning)
        1    0.000    0.000    0.000    0.000 polyutils.py:1(<module>)
        1    0.000    0.000    0.000    0.000 polyutils.py:43(RankWarning)
        1    0.000    0.000    0.001    0.001 poolmanager.py:1(<module>)
        1    0.000    0.000    0.000    0.000 poolmanager.py:139(PoolManager)
       12    0.000    0.000    0.000    0.000 poolmanager.py:170(__init__)
        6    0.000    0.000    0.018    0.003 poolmanager.py:173(<lambda>)
        6    0.000    0.000    0.002    0.000 poolmanager.py:188(_new_pool)
       12    0.000    0.000    0.018    0.002 poolmanager.py:215(clear)
       10    0.000    0.000    0.002    0.000 poolmanager.py:224(connection_from_host)
       10    0.000    0.000    0.002    0.000 poolmanager.py:247(connection_from_context)
       10    0.000    0.000    0.002    0.000 poolmanager.py:262(connection_from_pool_key)
       10    0.000    0.000    0.004    0.000 poolmanager.py:286(connection_from_url)
       10    0.000    0.000    0.000    0.000 poolmanager.py:302(_merge_pool_kwargs)
        1    0.000    0.000    0.000    0.000 poolmanager.py:420(ProxyManager)
       10    0.000    0.000    0.000    0.000 poolmanager.py:78(_default_key_normalizer)
        1    0.000    0.000    0.000    0.000 posixpath.py:1(<module>)
        1    0.000    0.000    0.000    0.000 pprint.py:103(PrettyPrinter)
        1    0.000    0.000    0.000    0.000 pprint.py:11(<module>)
        1    0.000    0.000    0.000    0.000 pprint.py:77(_safe_key)
        1    0.000    0.000    0.001    0.001 printing.py:1(<module>)
        1    0.000    0.000    0.000    0.000 printing.py:544(PrettyDict)
        1    0.000    0.000    0.000    0.000 process.py:10(<module>)
        1    0.000    0.000    0.000    0.000 process.py:343(AuthenticationString)
        1    0.000    0.000    0.000    0.000 process.py:358(_ParentProcess)
        1    0.000    0.000    0.000    0.000 process.py:391(_MainProcess)
        1    0.000    0.000    0.000    0.000 process.py:393(__init__)
        1    0.000    0.000    0.000    0.000 process.py:71(BaseProcess)
        1    0.000    0.000    0.000    0.000 proxy.py:1(<module>)
       10    0.000    0.000    0.000    0.000 proxy.py:4(connection_requires_http_tunnel)
        1    0.000    0.000    0.001    0.001 py.py:1(<module>)
        1    0.000    0.000    0.001    0.001 py.py:10(__init__)
     2232    0.001    0.000    0.001    0.000 py.py:11(<genexpr>)
        1    0.000    0.000    0.000    0.000 py.py:9(Trie)
        1    0.000    0.000    0.009    0.009 py3k.py:1(<module>)
        1    0.000    0.000    0.000    0.000 py3k.py:88(contextlib_nullcontext)
        2    0.000    0.000    0.004    0.002 pytables.py:1(<module>)
        1    0.000    0.000    0.000    0.000 pytables.py:134(PossibleDataLossError)
        1    0.000    0.000    0.000    0.000 pytables.py:138(ClosedFileError)
        1    0.000    0.000    0.000    0.000 pytables.py:142(IncompatibilityWarning)
        1    0.000    0.000    0.000    0.000 pytables.py:153(AttributeConflictWarning)
        1    0.000    0.000    0.000    0.000 pytables.py:163(DuplicateWarning)
        1    0.000    0.000    0.000    0.000 pytables.py:1806(TableIterator)
        1    0.000    0.000    0.000    0.000 pytables.py:1918(IndexCol)
        1    0.000    0.000    0.000    0.000 pytables.py:2198(GenericIndexCol)
        1    0.000    0.000    0.000    0.000 pytables.py:2225(DataCol)
        1    0.000    0.000    0.000    0.000 pytables.py:25(PyTablesScope)
        1    0.000    0.000    0.000    0.000 pytables.py:2509(DataIndexableCol)
        1    0.000    0.000    0.000    0.000 pytables.py:251(FilterBinOp)
        1    0.000    0.000    0.000    0.000 pytables.py:2536(GenericDataIndexableCol)
        1    0.000    0.000    0.000    0.000 pytables.py:2542(Fixed)
        1    0.000    0.000    0.000    0.000 pytables.py:2720(GenericFixed)
        1    0.000    0.000    0.000    0.000 pytables.py:2724(<dictcomp>)
        1    0.000    0.000    0.000    0.000 pytables.py:3057(SeriesFixed)
        1    0.000    0.000    0.000    0.000 pytables.py:3089(BlockManagerFixed)
        1    0.000    0.000    0.000    0.000 pytables.py:312(JointFilterBinOp)
        1    0.000    0.000    0.000    0.000 pytables.py:3179(FrameFixed)
        1    0.000    0.000    0.000    0.000 pytables.py:3184(Table)
        1    0.000    0.000    0.000    0.000 pytables.py:320(ConditionBinOp)
        1    0.000    0.000    0.000    0.000 pytables.py:366(JointConditionBinOp)
        1    0.000    0.000    0.000    0.000 pytables.py:372(UnaryOp)
        1    0.000    0.000    0.000    0.000 pytables.py:392(PyTablesExprVisitor)
        1    0.000    0.000    0.000    0.000 pytables.py:41(Term)
        1    0.000    0.000    0.000    0.000 pytables.py:4163(WORMTable)
        1    0.000    0.000    0.000    0.000 pytables.py:4193(AppendableTable)
        1    0.000    0.000    0.000    0.000 pytables.py:4424(AppendableFrameTable)
        1    0.000    0.000    0.000    0.000 pytables.py:4524(AppendableSeriesTable)
        1    0.000    0.000    0.000    0.000 pytables.py:4573(AppendableMultiSeriesTable)
        1    0.000    0.000    0.000    0.000 pytables.py:458(HDFStore)
        1    0.000    0.000    0.000    0.000 pytables.py:4590(GenericTable)
        1    0.000    0.000    0.000    0.000 pytables.py:4656(AppendableMultiFrameTable)
        1    0.000    0.000    0.000    0.000 pytables.py:503(PyTablesExpr)
        1    0.000    0.000    0.000    0.000 pytables.py:5092(Selection)
        1    0.000    0.000    0.000    0.000 pytables.py:608(TermValue)
        1    0.000    0.000    0.000    0.000 pytables.py:74(Constant)
        1    0.000    0.000    0.000    0.000 pytables.py:83(BinOp)
        2    0.000    0.000    0.002    0.001 queue.py:1(<module>)
        1    0.000    0.000    0.000    0.000 queue.py:11(LifoQueue)
        6    0.000    0.000    0.000    0.000 queue.py:12(_init)
       70    0.000    0.000    0.001    0.000 queue.py:122(put)
      146    0.000    0.000    0.000    0.000 queue.py:15(_qsize)
       76    0.000    0.000    0.001    0.000 queue.py:154(get)
       70    0.000    0.000    0.000    0.000 queue.py:18(_put)
       70    0.000    0.000    0.000    0.000 queue.py:21(_get)
        1    0.000    0.000    0.000    0.000 queue.py:223(PriorityQueue)
        1    0.000    0.000    0.000    0.000 queue.py:23(Full)
        1    0.000    0.000    0.000    0.000 queue.py:242(LifoQueue)
        1    0.000    0.000    0.000    0.000 queue.py:258(_PySimpleQueue)
        1    0.000    0.000    0.000    0.000 queue.py:28(Queue)
        6    0.000    0.000    0.000    0.000 queue.py:34(__init__)
        1    0.000    0.000    0.000    0.000 quopri.py:3(<module>)
        1    0.000    0.000    0.000    0.000 quoprimime.py:5(<module>)
        1    0.000    0.000    0.000    0.000 quoprimime.py:55(<listcomp>)
        1    0.000    0.000    0.002    0.002 random.py:1(<module>)
        1    0.000    0.000    0.000    0.000 random.py:101(Random)
        2    0.000    0.000    0.000    0.000 random.py:117(__init__)
        1    0.000    0.000    0.000    0.000 random.py:126(seed)
        1    0.000    0.000    0.000    0.000 random.py:217(__init_subclass__)
        1    0.000    0.000    0.000    0.000 random.py:778(SystemRandom)
        1    0.000    0.000    0.000    0.000 random.py:791(getrandbits)
        1    0.000    0.000    0.000    0.000 random.py:805(seed)
        1    0.000    0.000    0.001    0.001 range.py:1(<module>)
        8    0.000    0.000    0.000    0.000 range.py:133(_simple_new)
        4    0.000    0.000    0.000    0.000 range.py:152(_data)
        4    0.000    0.000    0.000    0.000 range.py:207(start)
        4    0.000    0.000    0.000    0.000 range.py:230(stop)
        4    0.000    0.000    0.000    0.000 range.py:253(step)
        1    0.000    0.000    0.001    0.001 range.py:38(RangeIndex)
        4    0.000    0.000    0.000    0.000 range.py:395(_shallow_copy)
        4    0.000    0.000    0.000    0.000 range.py:474(equals)
       36    0.000    0.000    0.000    0.000 range.py:747(__len__)
        4    0.000    0.000    0.000    0.000 range.py:757(__getitem__)
        8    0.000    0.000    0.000    0.000 range.py:85(__new__)
      253    0.000    0.000    0.001    0.000 re.py:188(match)
      269    0.000    0.000    0.011    0.000 re.py:203(sub)
       14    0.000    0.000    0.000    0.000 re.py:223(split)
      301    0.000    0.000    0.162    0.001 re.py:250(compile)
      105    0.000    0.000    0.000    0.000 re.py:270(escape)
      837    0.004    0.000    0.164    0.000 re.py:289(_compile)
        4    0.000    0.000    0.000    0.000 re.py:315(_compile_repl)
       11    0.000    0.000    0.000    0.000 re.py:325(_subx)
      136    0.000    0.000    0.000    0.000 re.py:331(filter)
        1    0.000    0.000    0.000    0.000 records.py:1(<module>)
        1    0.000    0.000    0.000    0.000 records.py:224(record)
        1    0.000    0.000    0.000    0.000 records.py:309(recarray)
        1    0.000    0.000    0.000    0.000 records.py:88(format_parser)
        1    0.000    0.000    0.000    0.000 reduction.py:10(<module>)
        1    0.000    0.000    0.000    0.000 reduction.py:104(DupHandle)
        1    0.000    0.000    0.000    0.000 reduction.py:211(_C)
        1    0.000    0.000    0.000    0.000 reduction.py:251(AbstractReducer)
        1    0.000    0.000    0.000    0.000 reduction.py:33(ForkingPickler)
        5    0.000    0.000    0.000    0.000 reduction.py:43(register)
        8    0.000    0.000    0.000    0.000 relativedelta.py:13(<genexpr>)
        1    0.000    0.000    0.000    0.000 relativedelta.py:18(relativedelta)
        1    0.000    0.000    0.001    0.001 relativedelta.py:2(<module>)
        1    0.000    0.000    0.000    0.000 replace.py:1(<module>)
        3    0.000    0.000    0.015    0.005 request.py:1(<module>)
        1    0.000    0.000    0.000    0.000 request.py:1048(HTTPBasicAuthHandler)
        1    0.000    0.000    0.000    0.000 request.py:1059(ProxyBasicAuthHandler)
        1    0.000    0.000    0.000    0.000 request.py:1078(AbstractDigestAuthHandler)
        1    0.000    0.000    0.000    0.000 request.py:1224(HTTPDigestAuthHandler)
        1    0.000    0.000    0.000    0.000 request.py:1242(ProxyDigestAuthHandler)
        1    0.000    0.000    0.000    0.000 request.py:1254(AbstractHTTPHandler)
        1    0.000    0.000    0.000    0.000 request.py:1372(HTTPHandler)
        1    0.000    0.000    0.000    0.000 request.py:1381(HTTPSHandler)
        1    0.000    0.000    0.000    0.000 request.py:1396(HTTPCookieProcessor)
        1    0.000    0.000    0.000    0.000 request.py:1414(UnknownHandler)
        1    0.000    0.000    0.000    0.000 request.py:1472(FileHandler)
        1    0.000    0.000    0.000    0.000 request.py:1529(FTPHandler)
        1    0.000    0.000    0.000    0.000 request.py:1587(CacheFTPHandler)
        1    0.000    0.000    0.000    0.000 request.py:1640(DataHandler)
        1    0.000    0.000    0.000    0.000 request.py:1693(URLopener)
        1    0.000    0.000    0.000    0.000 request.py:2138(FancyURLopener)
        1    0.000    0.000    0.000    0.000 request.py:2391(ftpwrapper)
       24    0.001    0.000    0.009    0.000 request.py:2486(getproxies_environment)
       10    0.000    0.000    0.000    0.000 request.py:2654(getproxies_registry)
       10    0.000    0.000    0.004    0.000 request.py:2699(getproxies)
        1    0.000    0.000    0.000    0.000 request.py:315(Request)
       18    0.000    0.000    0.000    0.000 request.py:40(__init__)
        1    0.000    0.000    0.000    0.000 request.py:424(OpenerDirector)
        1    0.000    0.000    0.000    0.000 request.py:603(BaseHandler)
        1    0.000    0.000    0.000    0.000 request.py:622(HTTPErrorProcessor)
        1    0.000    0.000    0.000    0.000 request.py:639(HTTPDefaultErrorHandler)
        1    0.000    0.000    0.000    0.000 request.py:643(HTTPRedirectHandler)
        1    0.000    0.000    0.000    0.000 request.py:789(ProxyHandler)
        1    0.000    0.000    0.000    0.000 request.py:832(HTTPPasswordMgr)
        1    0.000    0.000    0.000    0.000 request.py:896(HTTPPasswordMgrWithDefaultRealm)
        1    0.000    0.000    0.000    0.000 request.py:9(RequestMethods)
        1    0.000    0.000    0.000    0.000 request.py:906(HTTPPasswordMgrWithPriorAuth)
        1    0.000    0.000    0.001    0.001 request.py:937(AbstractBasicAuthHandler)
       10    0.000    0.000    0.000    0.000 request.py:98(set_file_position)
        1    0.000    0.000    0.000    0.000 reshape.py:1(<module>)
        1    0.000    0.000    0.000    0.000 reshape.py:38(_Unstacker)
        1    0.000    0.000    0.003    0.003 resources.py:1(<module>)
        1    0.000    0.000    0.000    0.000 resources.py:150(path)
        1    0.000    0.000    0.001    0.001 resources.py:169(_path_from_reader)
        1    0.000    0.000    0.000    0.000 resources.py:36(_resolve)
        1    0.000    0.000    0.000    0.000 resources.py:43(_get_package)
        1    0.000    0.000    0.000    0.000 resources.py:55(_normalize_path)
        1    0.000    0.000    0.000    0.000 resources.py:66(_get_resource_reader)
        3    0.000    0.000    0.000    0.000 response.py:1(<module>)
        1    0.000    0.000    0.000    0.000 response.py:106(BrotliDecoder)
        1    0.000    0.000    0.000    0.000 response.py:123(MultiDecoder)
        1    0.000    0.000    0.000    0.000 response.py:14(addbase)
        6    0.000    0.000    0.000    0.000 response.py:144(_get_decoder)
        1    0.000    0.000    0.000    0.000 response.py:157(HTTPResponse)
       10    0.000    0.000    0.000    0.000 response.py:195(__init__)
       20    0.000    0.000    0.000    0.000 response.py:251(<genexpr>)
       14    0.000    0.000    0.000    0.000 response.py:275(release_conn)
       10    0.000    0.000    0.000    0.000 response.py:317(_init_length)
        4    0.000    0.000    0.000    0.000 response.py:343(<listcomp>)
        1    0.000    0.000    0.000    0.000 response.py:35(DeflateDecoder)
       10    0.000    0.000    0.000    0.000 response.py:369(_init_decoder)
        1    0.000    0.000    0.000    0.000 response.py:37(addclosehook)
      195    0.001    0.000    0.028    0.000 response.py:392(_decode)
       10    0.000    0.000    0.000    0.000 response.py:40(assert_header_parsing)
        6    0.000    0.000    0.000    0.000 response.py:414(_flush_decoder)
       20    0.000    0.000    0.000    0.000 response.py:425(_error_catcher)
        4    0.000    0.000    0.001    0.000 response.py:481(read)
      199    0.000    0.000    1.678    0.008 response.py:555(stream)
        1    0.000    0.000    0.000    0.000 response.py:57(addinfo)
       10    0.000    0.000    0.002    0.000 response.py:581(from_httplib)
       10    0.000    0.000    0.000    0.000 response.py:617(getheader)
       10    0.000    0.000    0.000    0.000 response.py:635(closed)
        1    0.000    0.000    0.000    0.000 response.py:67(GzipDecoderState)
        1    0.000    0.000    0.000    0.000 response.py:68(addinfourl)
       12    0.000    0.000    0.000    0.000 response.py:680(supports_chunked_reads)
      197    0.001    0.000    0.092    0.000 response.py:689(_update_chunk_length)
      191    0.001    0.000    1.556    0.008 response.py:703(_handle_chunk)
      191    0.001    0.000    1.677    0.009 response.py:725(read_chunked)
        1    0.000    0.000    0.000    0.000 response.py:74(GzipDecoder)
        6    0.000    0.000    0.000    0.000 response.py:75(__init__)
        6    0.000    0.000    0.000    0.000 response.py:79(__getattr__)
      197    0.003    0.000    0.027    0.000 response.py:82(decompress)
        8    0.000    0.000    0.000    0.000 response.py:9(is_fp_closed)
        6    0.000    0.000    0.000    0.000 response.py:94(is_response_to_head)
        1    0.000    0.000    0.001    0.001 retry.py:1(<module>)
       13    0.000    0.000    0.000    0.000 retry.py:225(__init__)
       13    0.000    0.000    0.000    0.000 retry.py:283(<listcomp>)
        1    0.000    0.000    0.000    0.000 retry.py:35(_RetryMeta)
       10    0.000    0.000    0.000    0.000 retry.py:430(_is_method_retryable)
       10    0.000    0.000    0.000    0.000 retry.py:450(is_retry)
        1    0.000    0.000    0.000    0.000 retry.py:73(Retry)
        1    0.000    0.000    0.006    0.006 rolling.py:1(<module>)
        1    0.000    0.000    0.001    0.001 rolling.py:1181(RollingAndExpandingMixin)
        1    0.000    0.000    0.002    0.002 rolling.py:1862(Rolling)
        1    0.000    0.000    0.000    0.000 rolling.py:2145(RollingGroupby)
        6    0.000    0.000    0.000    0.000 rolling.py:723(dispatch)
        1    0.000    0.000    0.000    0.000 rolling.py:739(BaseWindowGroupby)
        1    0.000    0.000    0.001    0.001 rolling.py:76(BaseWindow)
        1    0.000    0.000    0.000    0.000 rolling.py:849(Window)
        1    0.000    0.000    0.000    0.000 roperator.py:1(<module>)
        1    0.000    0.000    0.000    0.000 sasreader.py:1(<module>)
        1    0.000    0.000    0.000    0.000 sasreader.py:16(ReaderBase)
        1    0.000    0.000    0.000    0.000 saxutils.py:1(<module>)
        1    0.000    0.000    0.000    0.000 saxutils.py:112(XMLGenerator)
        1    0.000    0.000    0.000    0.000 saxutils.py:227(XMLFilterBase)
        1    0.000    0.000    0.000    0.000 sbcharsetprober.py:29(<module>)
        1    0.000    0.000    0.000    0.000 sbcharsetprober.py:45(SingleByteCharSetProber)
        1    0.000    0.000    0.011    0.011 sbcsgroupprober.py:29(<module>)
        1    0.000    0.000    0.000    0.000 sbcsgroupprober.py:46(SBCSGroupProber)
        1    0.000    0.000    0.001    0.001 scanner.py:1(<module>)
        1    0.000    0.000    0.005    0.005 scimath.py:1(<module>)
        1    0.000    0.000    0.002    0.002 scope.py:1(<module>)
        1    0.000    0.000    0.000    0.000 scope.py:87(Scope)
        1    0.000    0.000    0.000    0.000 secrets.py:1(<module>)
        1    0.000    0.000    0.002    0.002 selectors.py:1(<module>)
        1    0.000    0.000    0.000    0.000 selectors.py:207(_BaseSelectorImpl)
        1    0.000    0.000    0.000    0.000 selectors.py:291(SelectSelector)
        1    0.000    0.000    0.000    0.000 selectors.py:342(_PollLikeSelector)
        4    0.000    0.000    0.000    0.000 selectors.py:584(_can_use)
        1    0.000    0.000    0.000    0.000 selectors.py:61(_SelectorMapping)
        1    0.000    0.000    0.000    0.000 selectors.py:81(BaseSelector)
        1    0.003    0.003    0.013    0.013 serializer.py:1(<module>)
        1    0.000    0.000    0.000    0.000 serializer.py:104(HTMLSerializer)
        1    0.000    0.000    0.000    0.000 serializer.py:407(SerializeError)
        1    0.000    0.000    0.018    0.018 series.py:1(<module>)
        3    0.000    0.000    0.000    0.000 series.py:133(_coerce_method)
        4    0.000    0.000    0.000    0.000 series.py:1480(items)
        1    0.000    0.000    0.003    0.003 series.py:151(Series)
    24/20    0.000    0.000    0.010    0.001 series.py:238(__init__)
        4    0.000    0.000    0.001    0.000 series.py:2734(_construct_result)
        4    0.000    0.000    0.005    0.001 series.py:372(_init_dict)
        8    0.000    0.000    0.001    0.000 series.py:4149(_reduce)
       12    0.000    0.000    0.000    0.000 series.py:422(_constructor)
        4    0.000    0.000    0.001    0.000 series.py:4337(reindex)
       20    0.000    0.000    0.000    0.000 series.py:439(_set_axis)
       28    0.000    0.000    0.000    0.000 series.py:473(dtype)
        4    0.000    0.000    0.001    0.000 series.py:4778(isna)
       48    0.000    0.000    0.000    0.000 series.py:488(name)
        4    0.000    0.000    0.008    0.002 series.py:4969(_cmp_method)
       40    0.000    0.000    0.000    0.000 series.py:538(name)
       36    0.000    0.000    0.000    0.000 series.py:585(_values)
        8    0.000    0.000    0.000    0.000 series.py:620(array)
        4    0.000    0.000    0.000    0.000 series.py:721(__array__)
        4    0.000    0.000    0.001    0.000 series.py:839(__getitem__)
        4    0.000    0.000    0.001    0.000 series.py:935(_get_values)
    14/10    0.000    0.000    3.467    0.347 sessions.py:144(resolve_redirects)
        4    0.000    0.000    0.001    0.000 sessions.py:254(rebuild_auth)
        4    0.000    0.000    0.006    0.001 sessions.py:273(rebuild_proxies)
        1    0.000    0.000    0.004    0.004 sessions.py:3(<module>)
        4    0.000    0.000    0.000    0.000 sessions.py:314(rebuild_method)
        1    0.000    0.000    0.000    0.000 sessions.py:337(Session)
        6    0.000    0.000    0.001    0.000 sessions.py:362(__init__)
        6    0.000    0.000    0.000    0.000 sessions.py:424(__enter__)
        6    0.000    0.000    0.018    0.003 sessions.py:427(__exit__)
        6    0.000    0.000    0.010    0.002 sessions.py:430(prepare_request)
        6    0.000    0.000    6.489    1.081 sessions.py:470(request)
       42    0.000    0.000    0.001    0.000 sessions.py:50(merge_setting)
     10/6    0.000    0.000    6.472    1.079 sessions.py:626(send)
        6    0.000    0.000    3.467    0.578 sessions.py:677(<listcomp>)
        6    0.000    0.000    0.006    0.001 sessions.py:701(merge_environment_settings)
       10    0.000    0.000    0.000    0.000 sessions.py:730(get_adapter)
       18    0.000    0.000    0.000    0.000 sessions.py:74(<listcomp>)
        6    0.000    0.000    0.018    0.003 sessions.py:744(close)
       12    0.000    0.000    0.000    0.000 sessions.py:749(mount)
       12    0.000    0.000    0.000    0.000 sessions.py:755(<listcomp>)
        6    0.000    0.000    0.000    0.000 sessions.py:81(merge_hooks)
        1    0.000    0.000    0.000    0.000 sessions.py:96(SessionRedirectMixin)
       14    0.000    0.000    0.000    0.000 sessions.py:98(get_redirect_target)
        2    0.000    0.000    0.012    0.006 shape_base.py:1(<module>)
        1    0.000    0.000    0.000    0.000 shared.py:22(<module>)
        1    0.000    0.000    0.000    0.000 shared_docs.py:1(<module>)
        1    0.000    0.000    0.000    0.000 shlex.py:1(<module>)
        1    0.000    0.000    0.000    0.000 shlex.py:19(shlex)
        1    0.000    0.000    0.014    0.014 shutil.py:1(<module>)
        1    0.000    0.000    0.000    0.000 shutil.py:69(Error)
        1    0.000    0.000    0.000    0.000 shutil.py:72(SameFileError)
        1    0.000    0.000    0.000    0.000 shutil.py:75(SpecialFileError)
        1    0.000    0.000    0.000    0.000 shutil.py:79(ExecError)
        1    0.000    0.000    0.000    0.000 shutil.py:82(ReadError)
        1    0.000    0.000    0.000    0.000 shutil.py:85(RegistryError)
        1    0.000    0.000    0.000    0.000 shutil.py:89(_GiveupOnFastCopy)
        1    0.000    0.000    0.002    0.002 signal.py:1(<module>)
       31    0.000    0.000    0.001    0.000 signal.py:10(<lambda>)
       32    0.000    0.000    0.000    0.000 signal.py:17(<lambda>)
      114    0.000    0.000    0.000    0.000 six.py:1015(ensure_text)
        1    0.000    0.000    0.000    0.000 six.py:107(MovedModule)
        1    0.000    0.000    0.000    0.000 six.py:108(MovedModule)
       47    0.000    0.000    0.000    0.000 six.py:108(__init__)
       47    0.000    0.000    0.000    0.000 six.py:110(__init__)
        4    0.000    0.000    0.040    0.010 six.py:117(_resolve)
        5    0.000    0.000    0.000    0.000 six.py:119(_resolve)
        1    0.000    0.000    0.037    0.037 six.py:120(__getattr__)
        1    0.000    0.000    0.000    0.000 six.py:127(_LazyModule)
        6    0.000    0.000    0.000    0.000 six.py:128(__init__)
        1    0.000    0.000    0.000    0.000 six.py:129(_LazyModule)
        6    0.000    0.000    0.000    0.000 six.py:131(__init__)
        1    0.000    0.000    0.000    0.000 six.py:141(MovedAttribute)
       88    0.000    0.000    0.000    0.000 six.py:142(__init__)
        1    0.000    0.000    0.000    0.000 six.py:144(MovedAttribute)
       88    0.000    0.000    0.000    0.000 six.py:146(__init__)
        3    0.000    0.000    0.000    0.000 six.py:160(_resolve)
        1    0.000    0.000    0.000    0.000 six.py:165(_SixMetaPathImporter)
        1    0.000    0.000    0.000    0.000 six.py:169(_SixMetaPathImporter)
        1    0.000    0.000    0.000    0.000 six.py:174(__init__)
        1    0.000    0.000    0.000    0.000 six.py:178(__init__)
       54    0.000    0.000    0.000    0.000 six.py:178(_add_module)
       54    0.000    0.000    0.000    0.000 six.py:182(_add_module)
        5    0.000    0.000    0.000    0.000 six.py:182(_get_module)
        5    0.000    0.000    0.000    0.000 six.py:186(_get_module)
       31    0.000    0.000    0.037    0.001 six.py:190(find_spec)
       18    0.000    0.000    0.000    0.000 six.py:194(find_spec)
        8    0.000    0.000    0.000    0.000 six.py:195(__get_module)
        4    0.000    0.000    0.000    0.000 six.py:199(__get_module)
        4    0.000    0.000    0.000    0.000 six.py:201(load_module)
        2    0.000    0.000    0.000    0.000 six.py:205(load_module)
        2    0.001    0.000    0.002    0.001 six.py:21(<module>)
        4    0.000    0.000    0.037    0.009 six.py:215(is_package)
        2    0.000    0.000    0.000    0.000 six.py:219(is_package)
        4    0.000    0.000    0.000    0.000 six.py:233(create_module)
        2    0.000    0.000    0.000    0.000 six.py:236(create_module)
        4    0.000    0.000    0.000    0.000 six.py:236(exec_module)
        2    0.000    0.000    0.000    0.000 six.py:239(exec_module)
        1    0.000    0.000    0.000    0.000 six.py:243(_MovedItems)
        1    0.000    0.000    0.000    0.000 six.py:245(_MovedItems)
        1    0.000    0.000    0.000    0.000 six.py:340(Module_six_moves_urllib_parse)
        1    0.000    0.000    0.000    0.000 six.py:352(Module_six_moves_urllib_parse)
        1    0.000    0.000    0.000    0.000 six.py:382(Module_six_moves_urllib_error)
        1    0.000    0.000    0.000    0.000 six.py:399(Module_six_moves_urllib_error)
        1    0.000    0.000    0.000    0.000 six.py:402(Module_six_moves_urllib_request)
        1    0.000    0.000    0.000    0.000 six.py:422(Module_six_moves_urllib_request)
        1    0.000    0.000    0.000    0.000 six.py:454(Module_six_moves_urllib_response)
        1    0.000    0.000    0.000    0.000 six.py:475(Module_six_moves_urllib_robotparser)
        1    0.000    0.000    0.000    0.000 six.py:477(Module_six_moves_urllib_response)
        1    0.000    0.000    0.000    0.000 six.py:493(Module_six_moves_urllib)
        1    0.000    0.000    0.000    0.000 six.py:501(Module_six_moves_urllib_robotparser)
        1    0.000    0.000    0.000    0.000 six.py:524(Module_six_moves_urllib)
       12    0.000    0.000    0.000    0.000 six.py:642(itervalues)
       16    0.000    0.000    0.000    0.000 six.py:80(_add_doc)
       12    0.000    0.000    0.041    0.003 six.py:85(_import_module)
        3    0.000    0.000    0.000    0.000 six.py:880(add_metaclass)
        3    0.000    0.000    0.000    0.000 six.py:882(wrapper)
        2    0.000    0.000    0.000    0.000 six.py:91(_LazyDescr)
      135    0.000    0.000    0.000    0.000 six.py:92(__init__)
      135    0.000    0.000    0.000    0.000 six.py:93(__init__)
        5    0.000    0.000    0.004    0.001 six.py:95(__get__)
        1    0.000    0.000    0.000    0.000 six.py:954(add_metaclass)
        1    0.000    0.000    0.000    0.000 six.py:957(wrapper)
        5    0.000    0.000    0.000    0.000 six.py:96(__get__)
       42    0.000    0.000    0.000    0.000 six.py:992(ensure_str)
        1    0.000    0.000    0.007    0.007 sjisprober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 sjisprober.py:36(SJISProber)
        1    0.000    0.000    0.000    0.000 socket.py:211(_GiveupOnSendfile)
        1    0.000    0.000    0.000    0.000 socket.py:214(socket)
       13    0.002    0.000    0.002    0.000 socket.py:220(__init__)
       10    0.000    0.000    0.000    0.000 socket.py:302(makefile)
        1    0.000    0.000    0.006    0.006 socket.py:4(<module>)
       10    0.000    0.000    0.000    0.000 socket.py:487(_decref_socketios)
        7    0.000    0.000    0.005    0.001 socket.py:493(_real_close)
        7    0.000    0.000    0.006    0.001 socket.py:497(close)
        6    0.000    0.000    0.000    0.000 socket.py:503(detach)
        6    0.000    0.000    0.000    0.000 socket.py:513(family)
        6    0.000    0.000    0.000    0.000 socket.py:519(type)
        1    0.000    0.000    0.000    0.000 socket.py:661(SocketIO)
       10    0.000    0.000    0.000    0.000 socket.py:678(__init__)
      873    0.002    0.000    5.950    0.007 socket.py:690(readinto)
      883    0.000    0.000    0.000    0.000 socket.py:729(readable)
       10    0.000    0.000    0.000    0.000 socket.py:767(close)
      207    0.000    0.000    0.000    0.000 socket.py:78(<lambda>)
      208    0.000    0.000    0.000    0.000 socket.py:83(<lambda>)
      209    0.000    0.000    0.000    0.000 socket.py:88(<lambda>)
      210    0.000    0.000    0.000    0.000 socket.py:93(<lambda>)
        6    0.000    0.000    0.009    0.001 socket.py:936(getaddrinfo)
       36    0.000    0.000    0.000    0.000 socket.py:99(_intenum_converter)
        1    0.000    0.000    0.002    0.002 socks.py:2(<module>)
        1    0.000    0.000    0.001    0.001 sorting.py:1(<module>)
        1    0.000    0.000    0.000    0.000 spss.py:1(<module>)
        1    0.000    0.000    0.000    0.000 sql.py:1(<module>)
        1    0.000    0.000    0.000    0.000 sql.py:1119(PandasSQL)
        1    0.000    0.000    0.000    0.000 sql.py:1137(SQLDatabase)
        1    0.000    0.000    0.000    0.000 sql.py:1550(SQLiteTable)
        1    0.000    0.000    0.000    0.000 sql.py:1692(SQLiteDatabase)
        1    0.000    0.000    0.000    0.000 sql.py:27(SQLAlchemyRequired)
        1    0.000    0.000    0.000    0.000 sql.py:31(DatabaseError)
        1    0.000    0.000    0.000    0.000 sql.py:675(SQLTable)
      995    0.002    0.000    0.003    0.000 sre_compile.py:249(_compile_charset)
      995    0.012    0.000    0.017    0.000 sre_compile.py:276(_optimize_charset)
      288    0.001    0.000    0.003    0.000 sre_compile.py:411(_mk_bitmap)
      288    0.002    0.000    0.002    0.000 sre_compile.py:413(<listcomp>)
       12    0.000    0.000    0.000    0.000 sre_compile.py:416(_bytes_to_codes)
     1129    0.001    0.000    0.003    0.000 sre_compile.py:423(_simple)
       49    0.000    0.000    0.000    0.000 sre_compile.py:432(_generate_overlap_table)
      434    0.000    0.000    0.000    0.000 sre_compile.py:453(_get_iscased)
  267/216    0.001    0.000    0.001    0.000 sre_compile.py:461(_get_literal_prefix)
      167    0.000    0.000    0.000    0.000 sre_compile.py:492(_get_charset_prefix)
      230    0.002    0.000    0.010    0.000 sre_compile.py:536(_compile_info)
      460    0.000    0.000    0.000    0.000 sre_compile.py:595(isstring)
      230    0.001    0.000    0.055    0.000 sre_compile.py:598(_code)
      322    0.000    0.000    0.000    0.000 sre_compile.py:65(_combine_flags)
 2698/230    0.017    0.000    0.045    0.000 sre_compile.py:71(_compile)
      230    0.002    0.000    0.157    0.001 sre_compile.py:759(compile)
        2    0.000    0.000    0.000    0.000 sre_parse.py:101(checklookbehindgroup)
      136    0.000    0.000    0.000    0.000 sre_parse.py:1054(expand_template)
     3381    0.002    0.000    0.002    0.000 sre_parse.py:111(__init__)
     7035    0.002    0.000    0.003    0.000 sre_parse.py:160(__len__)
       16    0.000    0.000    0.000    0.000 sre_parse.py:162(__delitem__)
    18665    0.008    0.000    0.012    0.000 sre_parse.py:164(__getitem__)
     1484    0.001    0.000    0.002    0.000 sre_parse.py:168(__setitem__)
     4737    0.002    0.000    0.003    0.000 sre_parse.py:172(append)
 2826/472    0.006    0.000    0.008    0.000 sre_parse.py:174(getwidth)
      234    0.001    0.000    0.001    0.000 sre_parse.py:224(__init__)
    20294    0.011    0.000    0.011    0.000 sre_parse.py:233(__next)
     9711    0.003    0.000    0.006    0.000 sre_parse.py:249(match)
    14417    0.007    0.000    0.014    0.000 sre_parse.py:254(get)
      415    0.001    0.000    0.001    0.000 sre_parse.py:258(getwhile)
       81    0.000    0.000    0.000    0.000 sre_parse.py:267(getuntil)
     4317    0.002    0.000    0.003    0.000 sre_parse.py:286(tell)
        6    0.000    0.000    0.000    0.000 sre_parse.py:288(seek)
     1106    0.002    0.000    0.003    0.000 sre_parse.py:295(_class_escape)
      888    0.001    0.000    0.002    0.000 sre_parse.py:355(_escape)
      897    0.001    0.000    0.002    0.000 sre_parse.py:432(_uniq)
 1256/231    0.007    0.000    0.096    0.000 sre_parse.py:435(_parse_sub)
 1810/245    0.035    0.000    0.095    0.000 sre_parse.py:493(_parse)
      231    0.000    0.000    0.000    0.000 sre_parse.py:76(__init__)
      942    0.000    0.000    0.001    0.000 sre_parse.py:81(groups)
      237    0.000    0.000    0.001    0.000 sre_parse.py:84(opengroup)
        9    0.000    0.000    0.000    0.000 sre_parse.py:861(_parse_flags)
      230    0.000    0.000    0.000    0.000 sre_parse.py:921(fix_flags)
      230    0.001    0.000    0.099    0.000 sre_parse.py:937(parse)
      237    0.000    0.000    0.004    0.000 sre_parse.py:96(closegroup)
        4    0.000    0.000    0.000    0.000 sre_parse.py:969(parse_template)
        3    0.000    0.000    0.000    0.000 sre_parse.py:978(addgroup)
        2    0.000    0.000    0.000    0.000 sre_parse.py:98(checkgroup)
     1772    0.000    0.000    0.000    0.000 ssl.py:1078(_checkClosed)
       12    0.000    0.000    0.000    0.000 ssl.py:1082(_check_connected)
      873    0.001    0.000    5.944    0.007 ssl.py:1090(read)
        6    0.000    0.000    0.001    0.000 ssl.py:1120(getpeercert)
       10    0.000    0.000    0.002    0.000 ssl.py:1166(send)
       10    0.000    0.000    0.002    0.000 ssl.py:1193(sendall)
      873    0.002    0.000    5.946    0.007 ssl.py:1230(recv_into)
      124    0.000    0.000    0.000    0.000 ssl.py:124(<lambda>)
      124    0.000    0.000    0.000    0.000 ssl.py:129(<lambda>)
        6    0.001    0.000    0.005    0.001 ssl.py:1298(_real_close)
        6    0.000    0.000    0.170    0.028 ssl.py:1302(do_handshake)
      124    0.000    0.000    0.000    0.000 ssl.py:134(<lambda>)
        6    0.000    0.000    0.000    0.000 ssl.py:1372(version)
      124    0.000    0.000    0.000    0.000 ssl.py:139(<lambda>)
      124    0.000    0.000    0.000    0.000 ssl.py:144(<lambda>)
      124    0.000    0.000    0.000    0.000 ssl.py:149(<lambda>)
        1    0.000    0.000    0.000    0.000 ssl.py:153(<dictcomp>)
        1    0.000    0.000    0.000    0.000 ssl.py:158(TLSVersion)
        1    0.000    0.000    0.000    0.000 ssl.py:168(_TLSContentType)
        1    0.000    0.000    0.000    0.000 ssl.py:182(_TLSAlertType)
        1    0.000    0.000    0.000    0.000 ssl.py:223(_TLSMessageType)
       24    0.000    0.000    0.000    0.000 ssl.py:275(_dnsname_match)
        6    0.000    0.000    0.000    0.000 ssl.py:324(_inet_paton)
        6    0.000    0.000    0.000    0.000 ssl.py:371(match_hostname)
        1    0.000    0.000    0.024    0.024 ssl.py:4(<module>)
        1    0.000    0.000    0.000    0.000 ssl.py:446(_ASN1Object)
        4    0.000    0.000    0.000    0.000 ssl.py:451(__new__)
        1    0.000    0.000    0.000    0.000 ssl.py:467(Purpose)
        1    0.000    0.000    0.000    0.000 ssl.py:474(SSLContext)
        6    0.000    0.000    0.003    0.001 ssl.py:482(__new__)
        6    0.000    0.000    0.000    0.000 ssl.py:486(_encode_hostname)
        6    0.000    0.000    0.171    0.029 ssl.py:494(wrap_socket)
        6    0.000    0.000    0.000    0.000 ssl.py:544(set_alpn_protocols)
        6    0.000    0.000    0.000    0.000 ssl.py:596(options)
        6    0.000    0.000    0.000    0.000 ssl.py:600(options)
       12    0.000    0.000    0.000    0.000 ssl.py:710(verify_mode)
       12    0.000    0.000    0.000    0.000 ssl.py:718(verify_mode)
        1    0.000    0.000    0.000    0.000 ssl.py:812(SSLObject)
       15    0.000    0.000    0.000    0.000 ssl.py:965(_sslcopydoc)
        1    0.000    0.000    0.000    0.000 ssl.py:971(SSLSocket)
        6    0.000    0.000    0.171    0.029 ssl.py:983(_create)
        1    0.000    0.000    0.039    0.039 ssl_.py:1(<module>)
       12    0.000    0.000    0.000    0.000 ssl_.py:211(resolve_cert_reqs)
        6    0.000    0.000    0.000    0.000 ssl_.py:234(resolve_ssl_version)
        6    0.000    0.000    0.005    0.001 ssl_.py:250(create_urllib3_context)
        6    0.000    0.000    0.000    0.000 ssl_.py:325(disable_check_hostname)
        6    0.000    0.000    0.275    0.046 ssl_.py:355(ssl_wrap_socket)
        6    0.000    0.000    0.000    0.000 ssl_.py:457(is_ipaddress)
        6    0.000    0.000    0.171    0.029 ssl_.py:481(_ssl_wrap_socket_impl)
        1    0.000    0.000    0.000    0.000 ssltransport.py:1(<module>)
        1    0.000    0.000    0.000    0.000 ssltransport.py:11(SSLTransport)
        1    0.000    0.000    0.002    0.002 stata.py:1(<module>)
        1    0.000    0.000    0.000    0.000 stata.py:1009(StataReader)
        1    0.000    0.000    0.000    0.000 stata.py:2059(StataWriter)
        1    0.000    0.000    0.000    0.000 stata.py:2751(StataStrLWriter)
        1    0.000    0.000    0.000    0.000 stata.py:2933(StataWriter117)
        1    0.000    0.000    0.000    0.000 stata.py:3321(StataWriterUTF8)
        1    0.000    0.000    0.000    0.000 stata.py:462(PossiblePrecisionLoss)
        1    0.000    0.000    0.000    0.000 stata.py:472(ValueLabelTypeMismatch)
        1    0.000    0.000    0.000    0.000 stata.py:483(InvalidColumnName)
        1    0.000    0.000    0.000    0.000 stata.py:499(CategoricalConversionWarning)
        1    0.000    0.000    0.000    0.000 stata.py:603(StataValueLabel)
        1    0.000    0.000    0.000    0.000 stata.py:713(StataMissingValue)
        1    0.000    0.000    0.000    0.000 stata.py:847(StataParser)
        1    0.000    0.000    0.001    0.001 status_codes.py:107(_init)
       68    0.000    0.000    0.000    0.000 status_codes.py:114(doc)
      189    0.000    0.000    0.000    0.000 status_codes.py:115(<genexpr>)
       69    0.000    0.000    0.000    0.000 status_codes.py:120(<genexpr>)
        1    0.000    0.000    0.001    0.001 status_codes.py:3(<module>)
        1    0.000    0.000    0.000    0.000 stride_tricks.py:1(<module>)
        1    0.000    0.000    0.000    0.000 stride_tricks.py:15(DummyArray)
        1    0.000    0.000    0.001    0.001 string.py:1(<module>)
        1    0.000    0.000    0.000    0.000 string.py:159(Formatter)
        1    0.000    0.000    0.000    0.000 string.py:57(Template)
        1    0.000    0.000    0.001    0.001 string.py:69(__init_subclass__)
        1    0.000    0.000    0.000    0.000 string_.py:1(<module>)
        1    0.000    0.000    0.000    0.000 string_.py:107(StringArray)
        1    0.000    0.000    0.000    0.000 string_.py:32(StringDtype)
        1    0.000    0.000    0.000    0.000 stringprep.py:2(<module>)
        1    0.000    0.000    0.000    0.000 struct.py:1(<module>)
        1    0.000    0.000    0.000    0.000 structures.py:15(CaseInsensitiveDict)
        1    0.000    0.000    0.000    0.000 structures.py:3(<module>)
       62    0.000    0.000    0.002    0.000 structures.py:42(__init__)
      378    0.000    0.000    0.000    0.000 structures.py:48(__setitem__)
      272    0.000    0.000    0.000    0.000 structures.py:53(__getitem__)
       48    0.000    0.000    0.000    0.000 structures.py:59(__iter__)
      218    0.000    0.000    0.000    0.000 structures.py:60(<genexpr>)
       18    0.000    0.000    0.000    0.000 structures.py:62(__len__)
       24    0.000    0.000    0.001    0.000 structures.py:82(copy)
        1    0.000    0.000    0.000    0.000 structures.py:89(LookupDict)
        1    0.000    0.000    0.000    0.000 structures.py:92(__init__)
        1    0.000    0.000    0.008    0.008 subprocess.py:10(<module>)
        1    0.000    0.000    0.000    0.000 subprocess.py:1014(__enter__)
        1    0.000    0.000    0.000    0.000 subprocess.py:1017(__exit__)
        1    0.000    0.000    0.000    0.000 subprocess.py:1045(__del__)
        1    0.000    0.000    0.000    0.000 subprocess.py:105(SubprocessError)
        1    0.000    0.000    0.000    0.000 subprocess.py:1060(_get_devnull)
        1    0.000    0.000    0.000    0.000 subprocess.py:108(CalledProcessError)
        1    0.000    0.000    0.097    0.097 subprocess.py:1090(communicate)
        1    0.000    0.000    0.000    0.000 subprocess.py:1158(poll)
        2    0.000    0.000    0.002    0.001 subprocess.py:1184(wait)
        1    0.000    0.000    0.000    0.000 subprocess.py:1207(_close_pipe_fds)
        1    0.000    0.000    0.000    0.000 subprocess.py:1240(_get_handles)
        3    0.000    0.000    0.000    0.000 subprocess.py:1312(_make_inheritable)
        1    0.000    0.000    0.000    0.000 subprocess.py:1321(_filter_handle_list)
        1    0.000    0.000    0.000    0.000 subprocess.py:1328(<setcomp>)
        1    0.000    0.000    0.014    0.014 subprocess.py:1334(_execute_child)
        2    0.000    0.000    0.000    0.000 subprocess.py:1445(_internal_poll)
        1    0.000    0.000    0.000    0.000 subprocess.py:145(TimeoutExpired)
        2    0.000    0.000    0.002    0.001 subprocess.py:1462(_wait)
        1    0.000    0.000    0.000    0.000 subprocess.py:174(STARTUPINFO)
        1    0.000    0.000    0.000    0.000 subprocess.py:175(__init__)
        1    0.000    0.000    0.000    0.000 subprocess.py:197(Handle)
        9    0.000    0.000    0.000    0.000 subprocess.py:200(Close)
        1    0.000    0.000    0.000    0.000 subprocess.py:205(Detach)
        1    0.000    0.000    0.000    0.000 subprocess.py:241(_cleanup)
        1    0.000    0.000    0.112    0.112 subprocess.py:377(check_output)
        1    0.000    0.000    0.000    0.000 subprocess.py:428(CompletedProcess)
        1    0.000    0.000    0.000    0.000 subprocess.py:439(__init__)
        1    0.000    0.000    0.112    0.112 subprocess.py:464(run)
        1    0.000    0.000    0.000    0.000 subprocess.py:650(_use_posix_spawn)
        1    0.000    0.000    0.000    0.000 subprocess.py:700(Popen)
        1    0.000    0.000    0.014    0.014 subprocess.py:756(__init__)
        1    0.000    0.000    0.016    0.016 tempfile.py:1(<module>)
        1    0.000    0.000    0.000    0.000 tempfile.py:124(_RandomNameSequence)
        1    0.000    0.000    0.000    0.000 tempfile.py:407(_TemporaryFileCloser)
        1    0.000    0.000    0.000    0.000 tempfile.py:450(_TemporaryFileWrapper)
        1    0.000    0.000    0.000    0.000 tempfile.py:623(SpooledTemporaryFile)
        1    0.000    0.000    0.000    0.000 tempfile.py:766(TemporaryDirectory)
        1    0.000    0.000    0.005    0.005 testing.py:1(<module>)
        2    0.000    0.000    0.000    0.000 textwrap.py:115(__init__)
        2    0.000    0.000    0.000    0.000 textwrap.py:146(_munge_whitespace)
        2    0.000    0.000    0.000    0.000 textwrap.py:160(_split)
        2    0.000    0.000    0.000    0.000 textwrap.py:179(<listcomp>)
        2    0.000    0.000    0.000    0.000 textwrap.py:233(_wrap_chunks)
        2    0.000    0.000    0.000    0.000 textwrap.py:336(_split_chunks)
        2    0.000    0.000    0.000    0.000 textwrap.py:342(wrap)
        2    0.000    0.000    0.000    0.000 textwrap.py:356(fill)
        2    0.000    0.000    0.000    0.000 textwrap.py:381(fill)
      393    0.004    0.000    0.046    0.000 textwrap.py:414(dedent)
        1    0.000    0.000    0.000    0.000 threading.py:1(<module>)
        1    0.000    0.000    0.000    0.000 threading.py:1127(daemon)
        1    0.000    0.000    0.000    0.000 threading.py:1209(_make_invoke_excepthook)
        1    0.000    0.000    0.000    0.000 threading.py:1262(Timer)
        1    0.000    0.000    0.000    0.000 threading.py:1292(_MainThread)
        1    0.000    0.000    0.000    0.000 threading.py:1294(__init__)
        1    0.000    0.000    0.000    0.000 threading.py:1313(_DummyThread)
        1    0.000    0.000    0.000    0.000 threading.py:216(Condition)
       20    0.000    0.000    0.000    0.000 threading.py:228(__init__)
      147    0.000    0.000    0.000    0.000 threading.py:256(__enter__)
      147    0.000    0.000    0.000    0.000 threading.py:259(__exit__)
      141    0.000    0.000    0.000    0.000 threading.py:271(_is_owned)
      141    0.000    0.000    0.001    0.000 threading.py:351(notify)
        1    0.000    0.000    0.000    0.000 threading.py:374(notify_all)
        1    0.000    0.000    0.000    0.000 threading.py:386(Semaphore)
        1    0.000    0.000    0.000    0.000 threading.py:398(__init__)
        1    0.000    0.000    0.000    0.000 threading.py:469(BoundedSemaphore)
        1    0.000    0.000    0.000    0.000 threading.py:510(Event)
        1    0.000    0.000    0.000    0.000 threading.py:521(__init__)
        1    0.000    0.000    0.000    0.000 threading.py:535(set)
        1    0.000    0.000    0.000    0.000 threading.py:589(Barrier)
        1    0.000    0.000    0.000    0.000 threading.py:743(BrokenBarrierError)
        1    0.000    0.000    0.000    0.000 threading.py:768(_maintain_shutdown_locks)
        1    0.000    0.000    0.000    0.000 threading.py:778(<listcomp>)
        1    0.000    0.000    0.000    0.000 threading.py:784(Thread)
        1    0.000    0.000    0.000    0.000 threading.py:795(__init__)
       48    0.000    0.000    0.000    0.000 threading.py:82(RLock)
        1    0.000    0.000    0.000    0.000 threading.py:936(_set_ident)
        1    0.000    0.000    0.000    0.000 threading.py:940(_set_native_id)
        1    0.000    0.000    0.000    0.000 threading.py:943(_set_tstate_lock)
        1    0.000    0.000    0.000    0.000 threading.py:95(_RLock)
        4    0.000    0.000    7.041    1.760 ticker.py:141(info)
        1    0.000    0.000    1.226    1.226 ticker.py:22(<module>)
        1    0.000    0.000    0.000    0.000 ticker.py:38(Ticker)
        1    0.000    0.000    0.008    0.008 tickers.py:22(<module>)
        1    0.000    0.000    0.000    0.000 tickers.py:28(Tickers)
        1    0.000    0.000    0.000    0.000 tile.py:1(<module>)
        3    0.000    0.000    0.001    0.000 timedeltas.py:1(<module>)
        1    0.000    0.000    0.000    0.000 timedeltas.py:28(TimedeltaIndex)
        4    0.000    0.000    0.000    0.000 timedeltas.py:54(_field_accessor)
        1    0.000    0.000    0.000    0.000 timedeltas.py:70(TimedeltaArray)
        1    0.000    0.000    0.000    0.000 timeout.py:1(<module>)
       36    0.000    0.000    0.000    0.000 timeout.py:102(__init__)
      108    0.000    0.000    0.000    0.000 timeout.py:119(_validate_timeout)
        6    0.000    0.000    0.000    0.000 timeout.py:165(from_float)
       20    0.000    0.000    0.000    0.000 timeout.py:181(clone)
       10    0.000    0.000    0.000    0.000 timeout.py:195(start_connect)
        1    0.000    0.000    0.000    0.000 timeout.py:20(Timeout)
       26    0.000    0.000    0.000    0.000 timeout.py:220(connect_timeout)
       10    0.000    0.000    0.000    0.000 timeout.py:238(read_timeout)
        1    0.000    0.000    0.000    0.000 times.py:1(<module>)
        1    0.000    0.000    0.000    0.000 traceback.py:1(<module>)
        1    0.000    0.000    0.000    0.000 traceback.py:227(FrameSummary)
        1    0.000    0.000    0.000    0.000 traceback.py:318(StackSummary)
        1    0.000    0.000    0.000    0.000 traceback.py:440(TracebackException)
        1    0.000    0.000    0.000    0.000 transforms.py:1(<module>)
        1    0.000    0.000    0.003    0.003 twodim_base.py:1(<module>)
        1    0.000    0.000    0.003    0.003 type_check.py:1(<module>)
      247    0.000    0.000    0.000    0.000 types.py:171(__get__)
     1169    0.001    0.000    0.003    0.000 typing.py:128(_type_convert)
      213    0.000    0.000    0.000    0.000 typing.py:1340(cast)
     1142    0.004    0.000    0.009    0.000 typing.py:137(_type_check)
       15    0.000    0.000    0.000    0.000 typing.py:1576(overload)
      539    0.001    0.000    0.002    0.000 typing.py:189(_collect_type_vars)
      262    0.000    0.000    0.000    0.000 typing.py:200(<listcomp>)
        1    0.000    0.000    0.000    0.000 typing.py:2008(NewType)
       56    0.000    0.000    0.000    0.000 typing.py:2027(new_type)
      196    0.000    0.000    0.000    0.000 typing.py:204(_check_generic)
      265    0.000    0.000    0.001    0.000 typing.py:216(_deduplicate)
      265    0.001    0.000    0.002    0.000 typing.py:230(_remove_dups_flatten)
1835/1721    0.002    0.000    0.033    0.000 typing.py:269(inner)
      104    0.000    0.000    0.000    0.000 typing.py:335(__repr__)
  369/265    0.000    0.000    0.017    0.000 typing.py:350(__getitem__)
      265    0.001    0.000    0.015    0.000 typing.py:431(Union)
      889    0.000    0.000    0.005    0.000 typing.py:463(<genexpr>)
      104    0.000    0.000    0.007    0.000 typing.py:469(Optional)
      107    0.000    0.000    0.002    0.000 typing.py:522(__init__)
      448    0.000    0.000    0.000    0.000 typing.py:556(__eq__)
      317    0.000    0.000    0.000    0.000 typing.py:564(__hash__)
       26    0.000    0.000    0.001    0.000 typing.py:618(__init__)
       37    0.000    0.000    0.000    0.000 typing.py:630(<genexpr>)
     3466    0.002    0.000    0.004    0.000 typing.py:655(_is_dunder)
      532    0.001    0.000    0.005    0.000 typing.py:667(__init__)
        2    0.000    0.000    0.000    0.000 typing.py:684(__mro_entries__)
     3466    0.004    0.000    0.007    0.000 typing.py:703(__setattr__)
      532    0.003    0.000    0.013    0.000 typing.py:729(__init__)
     1727    0.000    0.000    0.000    0.000 typing.py:733(<genexpr>)
      710    0.000    0.000    0.000    0.000 typing.py:740(__eq__)
  587/553    0.000    0.000    0.001    0.000 typing.py:746(__hash__)
      9/5    0.000    0.000    0.001    0.000 typing.py:749(__getitem__)
       18    0.000    0.000    0.000    0.000 typing.py:757(<genexpr>)
       10    0.000    0.000    0.000    0.000 typing.py:768(<genexpr>)
        4    0.000    0.000    0.000    0.000 typing.py:773(copy_with)
        7    0.000    0.000    0.000    0.000 typing.py:794(__mro_entries__)
      183    0.001    0.000    0.008    0.000 typing.py:822(__getitem__)
      419    0.000    0.000    0.002    0.000 typing.py:827(<genexpr>)
      238    0.001    0.000    0.006    0.000 typing.py:831(copy_with)
       20    0.000    0.000    0.001    0.000 typing.py:866(copy_with)
       54    0.000    0.000    0.001    0.000 typing.py:870(__getitem__)
       20    0.000    0.000    0.001    0.000 typing.py:884(__getitem_inner__)
       42    0.000    0.000    0.000    0.000 typing.py:893(<genexpr>)
       55    0.000    0.000    0.003    0.000 typing.py:899(__getitem__)
      158    0.000    0.000    0.001    0.000 typing.py:910(<genexpr>)
        5    0.000    0.000    0.000    0.000 typing.py:915(copy_with)
      708    0.000    0.000    0.000    0.000 typing.py:918(__eq__)
  561/488    0.001    0.000    0.001    0.000 typing.py:923(__hash__)
        5    0.000    0.000    0.000    0.000 typing.py:975(__class_getitem__)
       10    0.000    0.000    0.000    0.000 typing.py:983(<genexpr>)
        2    0.000    0.000    0.000    0.000 typing.py:986(<genexpr>)
        9    0.000    0.000    0.000    0.000 typing.py:997(__init_subclass__)
        1    0.000    0.000    0.000    0.000 tz.py:1036(tzstr)
        1    0.000    0.000    0.000    0.000 tz.py:1156(_tzicalvtzcomp)
        1    0.000    0.000    0.000    0.000 tz.py:1167(_tzicalvtz)
        1    0.000    0.000    0.000    0.000 tz.py:1253(tzical)
        1    0.000    0.000    0.000    0.000 tz.py:132(tzoffset)
        1    0.000    0.000    0.000    0.000 tz.py:1470(__get_gettz)
        1    0.000    0.000    0.000    0.000 tz.py:1475(GettzFunc)
        1    0.000    0.000    0.000    0.000 tz.py:1545(__init__)
        1    0.000    0.000    0.015    0.015 tz.py:2(<module>)
        1    0.000    0.000    0.000    0.000 tz.py:201(tzlocal)
        1    0.000    0.000    0.000    0.000 tz.py:328(_ttinfo)
        1    0.000    0.000    0.000    0.000 tz.py:373(_tzfile)
        1    0.000    0.000    0.000    0.000 tz.py:386(tzfile)
        1    0.000    0.000    0.000    0.000 tz.py:41(tzutc)
        1    0.000    0.000    0.000    0.000 tz.py:874(tzrange)
        1    0.000    0.000    0.000    0.000 tzfile.py:1(<module>)
        1    0.000    0.000    0.000    0.000 tzfile.py:12(_byte_string)
        1    0.000    0.000    0.000    0.000 tzinfo.py:1(<module>)
        1    0.000    0.000    0.000    0.000 tzinfo.py:156(DstTzInfo)
        1    0.000    0.000    0.000    0.000 tzinfo.py:18(memorized_timedelta)
        1    0.000    0.000    0.000    0.000 tzinfo.py:66(BaseTzInfo)
        1    0.000    0.000    0.000    0.000 tzinfo.py:76(StaticTzInfo)
        1    0.000    0.000    0.000    0.000 ufunclike.py:1(<module>)
        1    0.000    0.000    0.000    0.000 ufunclike.py:16(_deprecate_out_named_y)
        3    0.000    0.000    0.000    0.000 ufunclike.py:41(_fix_out_named_y)
        3    0.000    0.000    0.000    0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y)
        1    0.000    0.000    0.000    0.000 umath.py:1(<module>)
        1    0.000    0.000    0.032    0.032 universaldetector.py:28(<module>)
        1    0.000    0.000    0.000    0.000 universaldetector.py:51(UniversalDetector)
        1    0.000    0.000    0.029    0.029 url.py:1(<module>)
       54    0.001    0.000    0.002    0.000 url.py:210(_encode_invalid_chars)
       42    0.000    0.000    0.000    0.000 url.py:223(<lambda>)
       26    0.000    0.000    0.000    0.000 url.py:244(_remove_path_dot_segments)
       32    0.000    0.000    0.001    0.000 url.py:274(_normalize_host)
       22    0.000    0.000    0.001    0.000 url.py:297(<listcomp>)
       66    0.000    0.000    0.000    0.000 url.py:302(_idna_encode)
       66    0.000    0.000    0.000    0.000 url.py:303(<listcomp>)
       10    0.000    0.000    0.000    0.000 url.py:320(_encode_target)
       26    0.001    0.000    0.004    0.000 url.py:330(parse_url)
      156    0.000    0.000    0.000    0.000 url.py:413(ensure_type)
        1    0.000    0.000    0.000    0.000 url.py:54(<listcomp>)
        1    0.000    0.000    0.000    0.000 url.py:82(Url)
       26    0.000    0.000    0.000    0.000 url.py:91(__new__)
        1    0.000    0.000    0.001    0.001 utf8prober.py:28(<module>)
        1    0.000    0.000    0.000    0.000 utf8prober.py:35(UTF8Prober)
        1    0.000    0.000    0.000    0.000 utf_16_be.py:1(<module>)
        1    0.000    0.000    0.000    0.000 utf_16_be.py:18(IncrementalEncoder)
        1    0.000    0.000    0.000    0.000 utf_16_be.py:22(IncrementalDecoder)
        1    0.000    0.000    0.000    0.000 utf_16_be.py:25(StreamWriter)
        1    0.000    0.000    0.000    0.000 utf_16_be.py:28(StreamReader)
        1    0.000    0.000    0.000    0.000 utf_16_be.py:33(getregentry)
        1    0.000    0.000    0.000    0.000 utf_16_le.py:1(<module>)
        1    0.000    0.000    0.000    0.000 utf_16_le.py:18(IncrementalEncoder)
        1    0.000    0.000    0.000    0.000 utf_16_le.py:22(IncrementalDecoder)
        1    0.000    0.000    0.000    0.000 utf_16_le.py:25(StreamWriter)
        1    0.000    0.000    0.000    0.000 utf_16_le.py:28(StreamReader)
        1    0.000    0.000    0.000    0.000 utf_16_le.py:33(getregentry)
        1    0.000    0.000    0.000    0.000 utf_8.py:33(getregentry)
        2    0.000    0.000    0.000    0.000 util.py:1(<module>)
       22    0.000    0.000    0.000    0.000 util.py:14(lower)
        1    0.000    0.000    0.000    0.000 util.py:25(SelectorSyntaxError)
        1    0.000    0.000    0.001    0.001 utils.py:1(<module>)
       10    0.000    0.000    0.006    0.001 utils.py:169(get_netrc_auth)
       30    0.000    0.000    0.000    0.000 utils.py:176(<genexpr>)
        1    0.000    0.000    0.000    0.000 utils.py:181(ProgressBar)
        1    0.000    0.000    0.002    0.002 utils.py:22(<module>)
       10    0.000    0.000    0.002    0.000 utils.py:234(extract_zipped_paths)
       42    0.000    0.000    0.000    0.000 utils.py:293(to_key_val_list)
        1    0.000    0.000    0.063    0.063 utils.py:3(<module>)
       16    0.000    0.000    0.028    0.002 utils.py:39(empty_df)
       10    0.000    0.000    0.000    0.000 utils.py:461(_parse_content_type_header)
        2    0.001    0.000    2.064    1.032 utils.py:47(get_html)
       14    0.000    0.000    0.001    0.000 utils.py:48(proxy_bypass_registry)
       10    0.000    0.000    0.000    0.000 utils.py:486(get_encoding_from_headers)
        1    0.000    0.000    0.010    0.010 utils.py:5(<module>)
      290    0.000    0.000    0.000    0.000 utils.py:51(_has_surrogates)
       10    0.000    0.000    0.000    0.000 utils.py:529(iter_slices)
        4    0.005    0.001    4.514    1.128 utils.py:53(get_json)
        1    0.000    0.000    0.000    0.000 utils.py:54(_Deprecate)
       10    0.000    0.000    0.000    0.000 utils.py:580(unquote_unreserved)
       10    0.000    0.000    0.000    0.000 utils.py:604(requote_uri)
       28    0.000    0.000    0.000    0.000 utils.py:687(set_environ)
       14    0.000    0.000    0.008    0.001 utils.py:709(should_bypass_proxies)
       14    0.000    0.000    0.000    0.000 utils.py:717(<lambda>)
       10    0.000    0.000    0.009    0.001 utils.py:770(get_environ_proxies)
       20    0.000    0.000    0.001    0.000 utils.py:782(select_proxy)
        6    0.000    0.000    0.000    0.000 utils.py:808(default_user_agent)
        6    0.000    0.000    0.000    0.000 utils.py:817(default_headers)
       14    0.000    0.000    0.007    0.000 utils.py:87(proxy_bypass)
        6    0.000    0.000    0.000    0.000 utils.py:921(get_auth_from_url)
       24    0.000    0.000    0.000    0.000 utils.py:942(check_header_validity)
        1    0.000    0.000    0.000    0.000 uu.py:27(<module>)
        1    0.000    0.000    0.000    0.000 uu.py:39(Error)
        3    0.000    0.000    0.000    0.000 version.py:1(<module>)
        1    0.000    0.000    0.002    0.002 version.py:10(<module>)
        1    0.000    0.000    0.001    0.001 version.py:269(LooseVersion)
       12    0.000    0.000    0.000    0.000 version.py:304(__init__)
       12    0.000    0.000    0.000    0.000 version.py:309(parse)
        1    0.000    0.000    0.000    0.000 version.py:31(Version)
       12    0.000    0.000    0.000    0.000 version.py:314(<listcomp>)
        1    0.000    0.000    0.000    0.000 version.py:325(__str__)
        8    0.000    0.000    0.000    0.000 version.py:333(_cmp)
        7    0.000    0.000    0.000    0.000 version.py:51(__lt__)
        1    0.000    0.000    0.000    0.000 version.py:69(__ge__)
        1    0.000    0.000    0.001    0.001 version.py:93(StrictVersion)
        1    0.000    0.000    0.000    0.000 wait.py:1(<module>)
        1    0.000    0.000    0.000    0.000 wait.py:114(_have_working_poll)
        1    0.000    0.000    0.000    0.000 wait.py:127(wait_for_socket)
        1    0.000    0.000    0.000    0.000 wait.py:14(NoWayToWaitForSocketError)
        4    0.000    0.000    0.000    0.000 wait.py:142(wait_for_read)
        4    0.000    0.000    0.000    0.000 wait.py:42(_retry_on_intr)
        4    0.000    0.000    0.000    0.000 wait.py:71(select_wait_for_socket)
        3    0.000    0.000    0.001    0.000 warnings.py:130(filterwarnings)
       11    0.000    0.000    0.000    0.000 warnings.py:165(simplefilter)
       14    0.000    0.000    0.000    0.000 warnings.py:181(_add_filter)
        4    0.000    0.000    0.000    0.000 warnings.py:437(__init__)
        4    0.000    0.000    0.000    0.000 warnings.py:458(__enter__)
        4    0.000    0.000    0.000    0.000 warnings.py:477(__exit__)
        4    0.000    0.000    0.000    0.000 weakref.py:105(__init__)
        4    0.000    0.000    0.000    0.000 weakref.py:287(update)
        1    0.000    0.000    0.000    0.000 weakref.py:365(__init__)
        1    0.000    0.000    0.000    0.000 weakref.py:485(popitem)
        1    0.000    0.000    0.000    0.000 win.py:125(tzwinbase)
        1    0.000    0.000    0.002    0.002 win.py:2(<module>)
        1    0.000    0.000    0.000    0.000 win.py:202(tzwin)
        1    0.000    0.000    0.000    0.000 win.py:259(tzwinlocal)
        1    0.000    0.000    0.000    0.000 win.py:34(_settzkeyname)
        1    0.000    0.000    0.000    0.000 win.py:48(tzres)
        1    0.000    0.000    0.000    0.000 wintypes.py:104(_SMALL_RECT)
        1    0.000    0.000    0.000    0.000 wintypes.py:111(_COORD)
        1    0.000    0.000    0.000    0.000 wintypes.py:115(POINT)
        1    0.000    0.000    0.000    0.000 wintypes.py:120(SIZE)
        1    0.000    0.000    0.000    0.000 wintypes.py:128(FILETIME)
        1    0.000    0.000    0.000    0.000 wintypes.py:133(MSG)
        1    0.000    0.000    0.000    0.000 wintypes.py:143(WIN32_FIND_DATAA)
        1    0.000    0.000    0.000    0.000 wintypes.py:155(WIN32_FIND_DATAW)
        1    0.000    0.000    0.001    0.001 wintypes.py:2(<module>)
        1    0.000    0.000    0.000    0.000 wintypes.py:20(VARIANT_BOOL)
        1    0.000    0.000    0.000    0.000 wintypes.py:97(RECT)
        1    0.000    0.000    0.002    0.002 xmlreader.py:1(<module>)
        1    0.000    0.000    0.000    0.000 xmlreader.py:11(XMLReader)
        1    0.000    0.000    0.000    0.000 xmlreader.py:165(Locator)
        1    0.000    0.000    0.000    0.000 xmlreader.py:189(InputSource)
        1    0.000    0.000    0.000    0.000 xmlreader.py:278(AttributesImpl)
        1    0.000    0.000    0.000    0.000 xmlreader.py:340(AttributesNSImpl)
        1    0.000    0.000    0.000    0.000 xmlreader.py:91(IncrementalParser)
        1    0.000    0.000    0.000    0.000 zipfile.py:1(<module>)
        1    0.000    0.000    0.000    0.000 zipfile.py:1102(_ZipWriteFile)
        1    0.000    0.000    0.000    0.000 zipfile.py:1180(ZipFile)
        1    0.000    0.000    0.000    0.000 zipfile.py:1932(PyZipFile)
        1    0.000    0.000    0.000    0.000 zipfile.py:2159(CompleteDirs)
        1    0.000    0.000    0.000    0.000 zipfile.py:2209(FastLookup)
        1    0.000    0.000    0.000    0.000 zipfile.py:2227(Path)
        1    0.000    0.000    0.000    0.000 zipfile.py:317(ZipInfo)
        1    0.000    0.000    0.000    0.000 zipfile.py:42(BadZipFile)
        1    0.000    0.000    0.000    0.000 zipfile.py:46(LargeZipFile)
        1    0.000    0.000    0.000    0.000 zipfile.py:591(LZMACompressor)
        1    0.000    0.000    0.000    0.000 zipfile.py:614(LZMADecompressor)
        1    0.000    0.000    0.000    0.000 zipfile.py:715(_SharedFile)
        1    0.000    0.000    0.000    0.000 zipfile.py:753(_Tellable)
        1    0.000    0.000    0.000    0.000 zipfile.py:773(ZipExtFile)
     1397    0.007    0.000    0.007    0.000 {built-in method __new__ of type object at 0x00007FFEC468BC60}
       93    0.001    0.000    0.001    0.000 {built-in method _abc._abc_init}
      743    0.001    0.000    0.002    0.000 {built-in method _abc._abc_instancecheck}
       21    0.000    0.000    0.000    0.000 {built-in method _abc._abc_register}
   298/43    0.001    0.000    0.001    0.000 {built-in method _abc._abc_subclasscheck}
        1    0.000    0.000    0.000    0.000 {built-in method _codecs.charmap_decode}
        4    0.000    0.000    0.000    0.000 {built-in method _codecs.charmap_encode}
        5    0.000    0.000    0.002    0.000 {built-in method _codecs.lookup}
        1    0.000    0.000    0.000    0.000 {built-in method _codecs.register_error}
        3    0.000    0.000    0.000    0.000 {built-in method _csv.register_dialect}
        2    0.002    0.001    0.002    0.001 {built-in method _ctypes.LoadLibrary}
       36    0.000    0.000    0.000    0.000 {built-in method _ctypes.POINTER}
       42    0.000    0.000    0.000    0.000 {built-in method _ctypes.sizeof}
        1    0.000    0.000    0.000    0.000 {built-in method _elementtree._set_factories}
        2    0.000    0.000    0.000    0.000 {built-in method _functools.reduce}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_md5}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha1}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha224}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha256}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha384}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_224}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_256}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_384}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha3_512}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_sha512}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_shake_128}
        1    0.000    0.000    0.000    0.000 {built-in method _hashlib.openssl_shake_256}
      546    0.001    0.000    0.001    0.000 {built-in method _imp._fix_co_filename}
     4096    0.001    0.000    0.001    0.000 {built-in method _imp.acquire_lock}
       19    0.001    0.000    0.001    0.000 {built-in method _imp.create_builtin}
    69/67    0.105    0.002    0.107    0.002 {built-in method _imp.create_dynamic}
       19    0.000    0.000    0.000    0.000 {built-in method _imp.exec_builtin}
    69/41    0.032    0.000    0.153    0.004 {built-in method _imp.exec_dynamic}
      129    0.001    0.000    0.001    0.000 {built-in method _imp.is_builtin}
      646    0.001    0.000    0.001    0.000 {built-in method _imp.is_frozen}
     4096    0.001    0.000    0.001    0.000 {built-in method _imp.release_lock}
        1    0.000    0.000    0.000    0.000 {built-in method _locale._getdefaultlocale}
        2    0.000    0.000    0.000    0.000 {built-in method _locale.setlocale}
        4    0.000    0.000    0.000    0.000 {built-in method _operator.ne}
        6    0.008    0.001    0.008    0.001 {built-in method _socket.getaddrinfo}
        1    0.000    0.000    0.000    0.000 {built-in method _socket.gethostname}
        6    0.000    0.000    0.000    0.000 {built-in method _socket.inet_aton}
        6    0.000    0.000    0.000    0.000 {built-in method _socket.inet_pton}
       80    0.000    0.000    0.000    0.000 {built-in method _sre.ascii_iscased}
       67    0.000    0.000    0.000    0.000 {built-in method _sre.ascii_tolower}
      230    0.001    0.000    0.001    0.000 {built-in method _sre.compile}
     1716    0.000    0.000    0.000    0.000 {built-in method _sre.unicode_iscased}
      985    0.000    0.000    0.000    0.000 {built-in method _sre.unicode_tolower}
        4    0.000    0.000    0.000    0.000 {built-in method _ssl.txt2obj}
       12    0.000    0.000    0.000    0.000 {built-in method _stat.S_ISDIR}
       23    0.000    0.000    0.000    0.000 {built-in method _struct.calcsize}
      108    0.000    0.000    0.000    0.000 {built-in method _struct.pack}
      112    0.000    0.000    0.000    0.000 {built-in method _struct.unpack}
        1    0.000    0.000    0.000    0.000 {built-in method _thread._set_sentinel}
     1360    0.003    0.000    0.003    0.000 {built-in method _thread.allocate_lock}
     2850    0.001    0.000    0.001    0.000 {built-in method _thread.get_ident}
        1    0.000    0.000    0.000    0.000 {built-in method _thread.get_native_id}
       22    0.000    0.000    0.000    0.000 {built-in method _warnings._filters_mutated}
        1    0.000    0.000    0.000    0.000 {built-in method _warnings.warn}
        6    0.000    0.000    0.000    0.000 {built-in method _winapi.CloseHandle}
        1    0.000    0.000    0.000    0.000 {built-in method _winapi.CreatePipe}
        1    0.014    0.014    0.014    0.014 {built-in method _winapi.CreateProcess}
        3    0.000    0.000    0.000    0.000 {built-in method _winapi.DuplicateHandle}
        6    0.000    0.000    0.000    0.000 {built-in method _winapi.GetCurrentProcess}
        1    0.000    0.000    0.000    0.000 {built-in method _winapi.GetExitCodeProcess}
        1    0.000    0.000    0.000    0.000 {built-in method _winapi.GetStdHandle}
        1    0.002    0.002    0.002    0.002 {built-in method _winapi.WaitForSingleObject}
        1    0.000    0.000    0.000    0.000 {built-in method atexit.register}
1188/1179    0.022    0.000    0.156    0.000 {built-in method builtins.__build_class__}
   450/52    0.001    0.000    1.030    0.020 {built-in method builtins.__import__}
       96    0.000    0.000    0.000    0.000 {built-in method builtins.abs}
  136/132    0.000    0.000    0.002    0.000 {built-in method builtins.all}
      346    0.000    0.000    0.001    0.000 {built-in method builtins.any}
      528    0.000    0.000    0.000    0.000 {built-in method builtins.callable}
     1134    0.000    0.000    0.000    0.000 {built-in method builtins.chr}
      423    0.028    0.000    0.028    0.000 {built-in method builtins.compile}
       11    0.000    0.000    0.000    0.000 {built-in method builtins.delattr}
        4    0.000    0.000    0.000    0.000 {built-in method builtins.dir}
       60    0.000    0.000    0.000    0.000 {built-in method builtins.divmod}
       25    0.003    0.000    0.003    0.000 {built-in method builtins.eval}
    871/1    0.004    0.000    8.307    8.307 {built-in method builtins.exec}
    16976    0.007    0.000    0.007    0.000 {built-in method builtins.getattr}
      376    0.000    0.000    0.000    0.000 {built-in method builtins.globals}
6731/6346    0.003    0.000    0.044    0.000 {built-in method builtins.hasattr}
2186/1882    0.001    0.000    0.001    0.000 {built-in method builtins.hash}
        6    0.000    0.000    0.000    0.000 {built-in method builtins.hex}
       15    0.000    0.000    0.000    0.000 {built-in method builtins.id}
    64478    0.014    0.000    0.018    0.000 {built-in method builtins.isinstance}
     4862    0.001    0.000    0.001    0.000 {built-in method builtins.issubclass}
       24    0.000    0.000    0.000    0.000 {built-in method builtins.iter}
57407/53683    0.010    0.000    0.011    0.000 {built-in method builtins.len}
        3    0.000    0.000    0.000    0.000 {built-in method builtins.locals}
     2089    0.002    0.000    0.005    0.000 {built-in method builtins.max}
     7076    0.002    0.000    0.002    0.000 {built-in method builtins.min}
      438    0.000    0.000    0.008    0.000 {built-in method builtins.next}
     7843    0.003    0.000    0.003    0.000 {built-in method builtins.ord}
        2    0.000    0.000    0.000    0.000 {built-in method builtins.print}
       65    0.000    0.000    0.000    0.000 {built-in method builtins.repr}
       16    0.000    0.000    0.000    0.000 {built-in method builtins.round}
     4485    0.002    0.000    0.002    0.000 {built-in method builtins.setattr}
       78    0.000    0.000    0.000    0.000 {built-in method builtins.sorted}
       24    0.000    0.000    0.000    0.000 {built-in method builtins.sum}
       18    0.000    0.000    0.000    0.000 {built-in method builtins.vars}
     1639    0.001    0.000    0.001    0.000 {built-in method from_bytes}
      897    0.001    0.000    0.001    0.000 {built-in method fromkeys}
      546    0.072    0.000    0.072    0.000 {built-in method io.open_code}
        1    0.000    0.000    0.000    0.000 {built-in method io.open}
        2    0.000    0.000    0.000    0.000 {built-in method maketrans}
      546    0.121    0.000    0.121    0.000 {built-in method marshal.loads}
        1    0.000    0.000    0.000    0.000 {built-in method math.exp}
        2    0.000    0.000    0.000    0.000 {built-in method math.log}
        1    0.000    0.000    0.000    0.000 {built-in method math.sqrt}
        1    0.000    0.000    0.000    0.000 {built-in method msvcrt.get_osfhandle}
        1    0.000    0.000    0.000    0.000 {built-in method msvcrt.open_osfhandle}
        1    0.000    0.000    0.000    0.000 {built-in method nt._add_dll_directory}
        4    0.000    0.000    0.000    0.000 {built-in method nt._getfullpathname}
      143    0.000    0.000    0.000    0.000 {built-in method nt._path_splitroot}
        1    0.000    0.000    0.000    0.000 {built-in method nt.close}
        2    0.000    0.000    0.000    0.000 {built-in method nt.cpu_count}
     1769    0.000    0.000    0.000    0.000 {built-in method nt.fspath}
      111    0.000    0.000    0.000    0.000 {built-in method nt.getcwd}
       74    0.013    0.000    0.013    0.000 {built-in method nt.listdir}
        1    0.000    0.000    0.000    0.000 {built-in method nt.open}
        2    0.000    0.000    0.000    0.000 {built-in method nt.putenv}
        1    0.000    0.000    0.000    0.000 {built-in method nt.scandir}
     2683    0.291    0.000    0.291    0.000 {built-in method nt.stat}
        2    0.000    0.000    0.000    0.000 {built-in method nt.unsetenv}
        2    0.000    0.000    0.000    0.000 {built-in method nt.urandom}
       24    0.000    0.000    0.000    0.000 {built-in method numpy.arange}
      370    0.001    0.000    0.001    0.000 {built-in method numpy.array}
  282/274    0.000    0.000    0.000    0.000 {built-in method numpy.asarray}
        1    0.000    0.000    0.000    0.000 {built-in method numpy.core._multiarray_umath._reload_guard}
        1    0.000    0.000    0.000    0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage}
      309    0.000    0.000    0.000    0.000 {built-in method numpy.core._multiarray_umath.add_docstring}
       26    0.000    0.000    0.001    0.000 {built-in method numpy.core._multiarray_umath.implement_array_function}
        1    0.000    0.000    0.000    0.000 {built-in method numpy.core._multiarray_umath.set_typeDict}
      175    0.001    0.000    0.001    0.000 {built-in method numpy.empty}
       82    0.000    0.000    0.000    0.000 {built-in method numpy.geterrobj}
       41    0.000    0.000    0.000    0.000 {built-in method numpy.seterrobj}
        4    0.000    0.000    0.000    0.000 {built-in method pandas._libs.missing.checknull}
        4    0.000    0.000    0.000    0.000 {built-in method pandas._libs.missing.isnaobj}
       49    0.000    0.000    0.000    0.000 {built-in method sys._getframe}
        2    0.000    0.000    0.000    0.000 {built-in method sys.audit}
        1    0.000    0.000    0.000    0.000 {built-in method sys.exc_info}
        1    0.000    0.000    0.000    0.000 {built-in method sys.getdefaultencoding}
        2    0.000    0.000    0.000    0.000 {built-in method sys.getwindowsversion}
      156    0.000    0.000    0.000    0.000 {built-in method sys.intern}
        1    0.000    0.000    0.000    0.000 {built-in method time.localtime}
       10    0.000    0.000    0.000    0.000 {built-in method time.monotonic}
       20    0.000    0.000    0.000    0.000 {built-in method time.perf_counter}
       49    0.000    0.000    0.000    0.000 {built-in method time.time}
        6    0.000    0.000    0.000    0.000 {built-in method today}
        2    0.000    0.000    0.000    0.000 {built-in method utcfromtimestamp}
        1    0.000    0.000    0.000    0.000 {built-in method winreg.ConnectRegistry}
        1    0.000    0.000    0.000    0.000 {built-in method winreg.OpenKeyEx}
       25    0.001    0.000    0.001    0.000 {built-in method winreg.OpenKey}
       39    0.001    0.000    0.001    0.000 {built-in method winreg.QueryValueEx}
        6    0.000    0.000    0.000    0.000 {built-in method zlib.decompressobj}
       26    0.000    0.000    0.000    0.000 {function HTTPResponse.close at 0x00000163E3DB70D0}
       10    0.000    0.000    0.000    0.000 {function HTTPResponse.flush at 0x00000163E3DB7160}
        1    0.000    0.000    0.000    0.000 {function Random.seed at 0x00000163E3D44550}
        1    0.000    0.000    0.000    0.000 {function SeedSequence.generate_state at 0x00000163FF2BED30}
        7    0.005    0.001    0.005    0.001 {function socket.close at 0x00000163E3C8F790}
        6    0.000    0.000    0.000    0.000 {function socket.detach at 0x00000163E3C8F820}
       12    0.000    0.000    0.000    0.000 {method 'Close' of 'PyHKEY' objects}
      296    0.000    0.000    0.000    0.000 {method '__contains__' of 'frozenset' objects}
      147    0.000    0.000    0.000    0.000 {method '__enter__' of '_thread.lock' objects}
        1    0.000    0.000    0.000    0.000 {method '__exit__' of 'PyHKEY' objects}
      546    0.020    0.000    0.020    0.000 {method '__exit__' of '_io._IOBase' objects}
       33    0.000    0.000    0.000    0.000 {method '__exit__' of '_thread.RLock' objects}
     2982    0.001    0.000    0.001    0.000 {method '__exit__' of '_thread.lock' objects}
       20    0.000    0.000    0.000    0.000 {method '__exit__' of 'memoryview' objects}
        1    0.000    0.000    0.000    0.000 {method '__exit__' of 'nt.ScandirIterator' objects}
       10    0.000    0.000    0.000    0.000 {method '__init_subclass__' of 'object' objects}
        4    0.000    0.000    0.000    0.000 {method '__reduce_ex__' of 'object' objects}
      873    0.001    0.000    0.001    0.000 {method '_checkClosed' of '_io._IOBase' objects}
      873    0.000    0.000    0.001    0.000 {method '_checkReadable' of '_io._IOBase' objects}
        6    0.000    0.000    0.000    0.000 {method '_set_alpn_protocols' of '_ssl._SSLContext' objects}
        6    0.000    0.000    0.000    0.000 {method '_wrap_socket' of '_ssl._SSLContext' objects}
       93    0.000    0.000    0.000    0.000 {method 'acquire' of '_thread.RLock' objects}
      142    0.000    0.000    0.000    0.000 {method 'acquire' of '_thread.lock' objects}
     1145    0.000    0.000    0.000    0.000 {method 'add' of 'set' objects}
       16    0.000    0.000    0.000    0.000 {method 'all' of 'numpy.ndarray' objects}
        4    0.000    0.000    0.000    0.000 {method 'any' of 'numpy.ndarray' objects}
        6    0.000    0.000    0.000    0.000 {method 'append' of 'bytearray' objects}
       74    0.000    0.000    0.000    0.000 {method 'append' of 'collections.deque' objects}
    53408    0.009    0.000    0.009    0.000 {method 'append' of 'list' objects}
        8    0.000    0.000    0.000    0.000 {method 'astype' of 'numpy.ndarray' objects}
        1    0.000    0.000    0.000    0.000 {method 'bind' of '_socket.socket' objects}
       22    0.000    0.000    0.000    0.000 {method 'cast' of 'memoryview' objects}
       12    0.000    0.000    0.000    0.000 {method 'clear' of 'collections.OrderedDict' objects}
        3    0.000    0.000    0.000    0.000 {method 'clear' of 'dict' objects}
       10    0.000    0.000    0.000    0.000 {method 'close' of '_io.BufferedReader' objects}
        2    0.000    0.000    0.000    0.000 {method 'close' of '_io.TextIOWrapper' objects}
        1    0.000    0.000    0.000    0.000 {method 'close' of 'generator' objects}
        6    0.144    0.024    0.144    0.024 {method 'connect' of '_socket.socket' objects}
        4    0.000    0.000    0.000    0.000 {method 'copy' of 'collections.OrderedDict' objects}
       83    0.000    0.000    0.000    0.000 {method 'copy' of 'dict' objects}
        2    0.000    0.000    0.000    0.000 {method 'copy' of 'list' objects}
        4    0.000    0.000    0.000    0.000 {method 'copy' of 'mappingproxy' objects}
       60    0.000    0.000    0.000    0.000 {method 'copy' of 'numpy.ndarray' objects}
       48    0.000    0.000    0.000    0.000 {method 'count' of 'bytes' objects}
        1    0.000    0.000    0.000    0.000 {method 'count' of 'list' objects}
       66    0.000    0.000    0.000    0.000 {method 'count' of 'str' objects}
       48    0.000    0.000    0.000    0.000 {method 'decode' of 'bytearray' objects}
      801    0.000    0.000    0.000    0.000 {method 'decode' of 'bytes' objects}
      191    0.024    0.000    0.024    0.000 {method 'decompress' of 'zlib.Decompress' objects}
       11    0.000    0.000    0.000    0.000 {method 'deleter' of 'property' objects}
        1    0.000    0.000    0.000    0.000 {method 'difference_update' of 'set' objects}
        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}
       16    0.000    0.000    0.000    0.000 {method 'discard' of 'set' objects}
        6    0.170    0.028    0.170    0.028 {method 'do_handshake' of '_ssl._SSLSocket' objects}
        1    0.000    0.000    0.000    0.000 {method 'dot' of 'numpy.ndarray' objects}
  806/794    0.000    0.000    0.001    0.000 {method 'encode' of 'str' objects}
      660    0.000    0.000    0.000    0.000 {method 'end' of 're.Match' objects}
    22306    0.006    0.000    0.006    0.000 {method 'endswith' of 'str' objects}
       30    0.000    0.000    0.000    0.000 {method 'expandtabs' of 'str' objects}
       12    0.000    0.000    0.000    0.000 {method 'extend' of 'bytearray' objects}
       20    0.000    0.000    0.000    0.000 {method 'extend' of 'collections.deque' objects}
     1366    0.001    0.000    0.001    0.000 {method 'extend' of 'list' objects}
        6    0.000    0.000    0.000    0.000 {method 'fileno' of '_socket.socket' objects}
       96    0.000    0.000    0.000    0.000 {method 'fill' of 'numpy.ndarray' objects}
     3987    0.002    0.000    0.002    0.000 {method 'find' of 'bytearray' objects}
      379    0.000    0.000    0.000    0.000 {method 'find' of 'str' objects}
      393    0.016    0.000    0.016    0.000 {method 'findall' of 're.Pattern' objects}
        6    0.000    0.000    0.000    0.000 {method 'flush' of '_io.BufferedReader' objects}
        6    0.000    0.000    0.000    0.000 {method 'flush' of 'zlib.Decompress' objects}
     1824    0.003    0.000    0.003    0.000 {method 'format' of 'str' objects}
       54    0.000    0.000    0.000    0.000 {method 'fullmatch' of 're.Pattern' objects}
     7744    0.006    0.000    0.006    0.000 {method 'get' of 'dict' objects}
      377    0.000    0.000    0.000    0.000 {method 'get' of 'mappingproxy' objects}
        6    0.001    0.000    0.001    0.000 {method 'getpeercert' of '_ssl._SSLSocket' objects}
        6    0.000    0.000    0.000    0.000 {method 'getpeername' of '_socket.socket' objects}
        6    0.000    0.000    0.000    0.000 {method 'getsockopt' of '_socket.socket' objects}
       18    0.000    0.000    0.000    0.000 {method 'gettimeout' of '_socket.socket' objects}
     1000    0.000    0.000    0.000    0.000 {method 'group' of 're.Match' objects}
        1    0.000    0.000    0.000    0.000 {method 'groupdict' of 're.Match' objects}
       82    0.000    0.000    0.000    0.000 {method 'groups' of 're.Match' objects}
       28    0.000    0.000    0.000    0.000 {method 'index' of 'list' objects}
        1    0.000    0.000    0.000    0.000 {method 'index' of 'str' objects}
        4    0.000    0.000    0.000    0.000 {method 'index' of 'tuple' objects}
      199    0.000    0.000    0.000    0.000 {method 'insert' of 'list' objects}
       38    0.000    0.000    0.000    0.000 {method 'isalnum' of 'str' objects}
        8    0.000    0.000    0.000    0.000 {method 'isascii' of 'str' objects}
      274    0.000    0.000    0.000    0.000 {method 'isidentifier' of 'str' objects}
      689    0.000    0.000    0.000    0.000 {method 'islower' of 'str' objects}
      865    0.000    0.000    0.000    0.000 {method 'isupper' of 'str' objects}
       28    0.000    0.000    0.000    0.000 {method 'items' of 'collections.OrderedDict' objects}
     1151    0.000    0.000    0.000    0.000 {method 'items' of 'dict' objects}
      102    0.000    0.000    0.000    0.000 {method 'items' of 'mappingproxy' objects}
      106    0.004    0.000    1.682    0.016 {method 'join' of 'bytes' objects}
8102/8033    0.003    0.000    0.116    0.000 {method 'join' of 'str' objects}
      126    0.000    0.000    0.000    0.000 {method 'keys' of 'dict' objects}
        6    0.103    0.017    0.103    0.017 {method 'load_verify_locations' of '_ssl._SSLContext' objects}
        3    0.000    0.000    0.000    0.000 {method 'lower' of 'bytes' objects}
     7203    0.001    0.000    0.001    0.000 {method 'lower' of 'str' objects}
     1109    0.000    0.000    0.000    0.000 {method 'lstrip' of 'str' objects}
     3168    0.004    0.000    0.004    0.000 {method 'match' of 're.Pattern' objects}
        4    0.000    0.000    0.000    0.000 {method 'max' of 'numpy.ndarray' objects}
       24    0.000    0.000    0.000    0.000 {method 'mro' of 'type' objects}
     1398    0.000    0.000    0.000    0.000 {method 'partition' of 'str' objects}
       10    0.000    0.000    0.000    0.000 {method 'pop' of 'collections.OrderedDict' objects}
       74    0.000    0.000    0.000    0.000 {method 'pop' of 'collections.deque' objects}
      881    0.000    0.000    0.000    0.000 {method 'pop' of 'dict' objects}
      136    0.000    0.000    0.000    0.000 {method 'pop' of 'list' objects}
       52    0.000    0.000    0.000    0.000 {method 'pop' of 'set' objects}
        1    0.000    0.000    0.000    0.000 {method 'popitem' of 'dict' objects}
      202    0.000    0.000    0.000    0.000 {method 'popleft' of 'collections.deque' objects}
        4    0.000    0.000    0.000    0.000 {method 'ravel' of 'numpy.ndarray' objects}
      865    0.038    0.000    1.591    0.002 {method 'read' of '_io.BufferedReader' objects}
       20    0.000    0.000    0.000    0.000 {method 'read' of '_io.StringIO' objects}
        1    0.095    0.095    0.095    0.095 {method 'read' of '_io.TextIOWrapper' objects}
      873    5.943    0.007    5.943    0.007 {method 'read' of '_ssl._SSLSocket' objects}
        4    0.000    0.000    0.000    0.000 {method 'readinto' of '_io.BufferedReader' objects}
      352    0.000    0.000    4.398    0.012 {method 'readline' of '_io.BufferedReader' objects}
       20    0.000    0.000    0.000    0.000 {method 'readlines' of '_io._IOBase' objects}
       30    0.001    0.000    0.001    0.000 {method 'reduce' of 'numpy.ufunc' objects}
       93    0.000    0.000    0.000    0.000 {method 'release' of '_thread.RLock' objects}
       12    0.000    0.000    0.000    0.000 {method 'remove' of 'list' objects}
       18    0.000    0.000    0.000    0.000 {method 'remove' of 'set' objects}
     1959    0.018    0.000    0.018    0.000 {method 'replace' of 'str' objects}
        4    0.000    0.000    0.000    0.000 {method 'reshape' of 'numpy.ndarray' objects}
        3    0.000    0.000    0.000    0.000 {method 'reverse' of 'list' objects}
     2235    0.001    0.000    0.001    0.000 {method 'rfind' of 'str' objects}
     4533    0.002    0.000    0.002    0.000 {method 'rpartition' of 'str' objects}
        7    0.000    0.000    0.000    0.000 {method 'rsplit' of 'str' objects}
       70    0.000    0.000    0.000    0.000 {method 'rstrip' of 'bytes' objects}
    18101    0.003    0.000    0.003    0.000 {method 'rstrip' of 'str' objects}
      320    0.002    0.000    0.002    0.000 {method 'search' of 're.Pattern' objects}
       40    0.000    0.000    0.000    0.000 {method 'seek' of '_io.StringIO' objects}
        6    0.000    0.000    0.000    0.000 {method 'set_ciphers' of '_ssl._SSLContext' objects}
      192    0.000    0.000    0.000    0.000 {method 'setdefault' of 'collections.OrderedDict' objects}
      108    0.000    0.000    0.000    0.000 {method 'setdefault' of 'dict' objects}
        6    0.000    0.000    0.000    0.000 {method 'setsockopt' of '_socket.socket' objects}
       69    0.000    0.000    0.000    0.000 {method 'setter' of 'property' objects}
       28    0.000    0.000    0.000    0.000 {method 'settimeout' of '_socket.socket' objects}
       33    0.000    0.000    0.000    0.000 {method 'sort' of 'list' objects}
      152    0.000    0.000    0.000    0.000 {method 'split' of 'bytes' objects}
       28    0.000    0.000    0.000    0.000 {method 'split' of 're.Pattern' objects}
      488    0.012    0.000    0.012    0.000 {method 'split' of 'str' objects}
       14    0.000    0.000    0.000    0.000 {method 'start' of 're.Match' objects}
    37059    0.010    0.000    0.010    0.000 {method 'startswith' of 'str' objects}
       38    0.000    0.000    0.000    0.000 {method 'strftime' of 'datetime.date' objects}
     1124    0.001    0.000    0.001    0.000 {method 'strip' of 'str' objects}
     1139    0.023    0.000    0.023    0.000 {method 'sub' of 're.Pattern' objects}
       48    0.000    0.000    0.000    0.000 {method 'subn' of 're.Pattern' objects}
        2    0.000    0.000    0.000    0.000 {method 'sum' of 'numpy.ndarray' objects}
        4    0.000    0.000    0.000    0.000 {method 'tobytes' of 'memoryview' objects}
       12    0.000    0.000    0.000    0.000 {method 'tolist' of 'memoryview' objects}
       30    0.000    0.000    0.000    0.000 {method 'toordinal' of 'datetime.date' objects}
      288    0.000    0.000    0.000    0.000 {method 'translate' of 'bytearray' objects}
      156    0.000    0.000    0.000    0.000 {method 'translate' of 'str' objects}
       20    0.000    0.000    0.000    0.000 {method 'truncate' of '_io.StringIO' objects}
        1    0.000    0.000    0.000    0.000 {method 'union' of 'set' objects}
       12    0.000    0.000    0.000    0.000 {method 'update' of 'collections.OrderedDict' objects}
      583    0.000    0.000    0.000    0.000 {method 'update' of 'dict' objects}
        6    0.000    0.000    0.000    0.000 {method 'upper' of 'bytes' objects}
     2537    0.001    0.000    0.001    0.000 {method 'upper' of 'str' objects}
      100    0.000    0.000    0.000    0.000 {method 'values' of 'collections.OrderedDict' objects}
       44    0.000    0.000    0.000    0.000 {method 'values' of 'dict' objects}
        2    0.000    0.000    0.000    0.000 {method 'values' of 'mappingproxy' objects}
        6    0.000    0.000    0.000    0.000 {method 'version' of '_ssl._SSLSocket' objects}
        1    0.000    0.000    0.000    0.000 {method 'view' of 'numpy.generic' objects}
      4/3    0.000    0.000    0.000    0.000 {method 'view' of 'numpy.ndarray' objects}
       10    0.000    0.000    0.000    0.000 {method 'write' of '_io.StringIO' objects}
       10    0.002    0.000    0.002    0.000 {method 'write' of '_ssl._SSLSocket' objects}
        6    0.000    0.000    0.000    0.000 {method 'zfill' of 'bytes' objects}
        6    0.000    0.000    0.000    0.000 {pandas._libs.algos.ensure_object}
       24    0.000    0.000    0.000    0.000 {pandas._libs.lib.clean_index_list}
        6    0.000    0.000    0.000    0.000 {pandas._libs.lib.infer_datetimelike_array}
       46    0.001    0.000    0.001    0.000 {pandas._libs.lib.infer_dtype}
      101    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_bool}
      204    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_float}
      112    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_integer}
       72    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_iterator}
      214    0.000    0.000    0.001    0.000 {pandas._libs.lib.is_list_like}
      298    0.000    0.000    0.000    0.000 {pandas._libs.lib.is_scalar}
        8    0.000    0.000    0.000    0.000 {pandas._libs.lib.item_from_zerodim}
        8    0.000    0.000    0.000    0.000 {pandas._libs.lib.maybe_convert_numeric}
        4    0.000    0.000    0.000    0.000 {pandas._libs.lib.maybe_convert_objects}
        4    0.000    0.000    0.000    0.000 {pandas._libs.lib.to_object_array}
        6    0.000    0.000    0.000    0.000 {pandas._libs.ops.maybe_convert_bool}
        6    0.000    0.000    0.000    0.000 {pandas._libs.parsers.sanitize_objects}

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.