gitextract_u5aix2x9/ ├── .check_external_deps.sh ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── actions/ │ │ ├── setup-poetry-env/ │ │ │ └── action.yml │ │ └── setup-poetry-env-only-main/ │ │ └── action.yml │ └── workflows/ │ ├── main.yml │ ├── on-release-main.yml │ └── validate-codecov-config.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── codecov.yaml ├── docs/ │ ├── Makefile │ ├── _templates/ │ │ └── side-primary.html │ ├── _themes/ │ │ ├── LICENSE │ │ └── ms/ │ │ ├── layout.html │ │ ├── relations.html │ │ ├── static/ │ │ │ ├── flasky.css_t │ │ │ └── small_flask.css │ │ └── theme.conf │ ├── api_reference.rst │ ├── conf.py │ ├── examples.rst │ ├── goals.rst │ ├── index.rst │ ├── merge_strategies.rst │ ├── sorted_dict.rst │ └── unevenly-spaced.rst ├── docs-md/ │ ├── index.md │ ├── modules.md │ └── stylesheets/ │ └── extra.css ├── examples/ │ ├── Plot.ipynb │ ├── Shaded.ipynb │ ├── Untitled.ipynb │ ├── data/ │ │ ├── lightbulb-01.csv │ │ ├── lightbulb-02.csv │ │ ├── lightbulb-03.csv │ │ ├── lightbulb-04.csv │ │ ├── lightbulb-05.csv │ │ ├── lightbulb-06.csv │ │ ├── lightbulb-07.csv │ │ ├── lightbulb-08.csv │ │ ├── lightbulb-09.csv │ │ ├── lightbulb-10.csv │ │ ├── lightbulb-11.csv │ │ ├── lightbulb-12.csv │ │ ├── lightbulb-13.csv │ │ ├── lightbulb-14.csv │ │ ├── lightbulb-15.csv │ │ ├── lightbulb-16.csv │ │ ├── lightbulb-17.csv │ │ ├── lightbulb-18.csv │ │ ├── lightbulb-19.csv │ │ ├── lightbulb-20.csv │ │ ├── lightbulb-21.csv │ │ ├── lightbulb-22.csv │ │ ├── lightbulb-23.csv │ │ ├── lightbulb-24.csv │ │ ├── lightbulb-25.csv │ │ ├── lightbulb-26.csv │ │ ├── lightbulb-27.csv │ │ ├── lightbulb-28.csv │ │ ├── lightbulb-29.csv │ │ ├── lightbulb-30.csv │ │ ├── lightbulb-31.csv │ │ ├── lightbulb-32.csv │ │ ├── lightbulb-33.csv │ │ ├── lightbulb-34.csv │ │ ├── lightbulb-35.csv │ │ ├── lightbulb-36.csv │ │ ├── lightbulb-37.csv │ │ ├── lightbulb-38.csv │ │ ├── lightbulb-39.csv │ │ └── lightbulb-40.csv │ ├── event_analysis.py │ ├── financial_analysis.py │ ├── helloworld.py │ ├── iot_sensor_analysis.py │ ├── stackystack.py │ ├── stackystack.py.bak │ └── timing.py ├── experiments/ │ ├── bench_merge.py │ ├── bench_merge_strategies.py │ ├── bench_sorted_dict.py │ ├── bench_tickets.py │ └── sorted_dict_replacement.py ├── mkdocs.yml ├── poetry.toml ├── pyproject.toml ├── tests/ │ ├── .coveragerc │ ├── __init__.py │ ├── test_compact.py │ ├── test_distribution.py │ ├── test_distribution_external.py │ ├── test_docs.py │ ├── test_eventseries.py │ ├── test_eventseries_external.py │ ├── test_histogram.py │ ├── test_histogram_external.py │ ├── test_improved_methods.py │ ├── test_iterators.py │ ├── test_json_io.py │ ├── test_methods.py │ ├── test_methods_external.py │ ├── test_missing.py │ ├── test_operations.py │ ├── test_plot.py │ ├── test_plot_external.py │ ├── test_something.py │ ├── test_sorted_dict.py │ ├── test_traces.py │ ├── test_traces_external.py │ └── test_utils.py ├── tox.ini └── traces/ ├── __init__.py ├── decorators.py ├── eventseries.py ├── histogram.py ├── infinity.py ├── operations.py ├── plot.py ├── sorted_dict.py ├── timeseries.py └── utils.py