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